本文實(shí)例為大家分享了Android九宮格圖片展示的具體代碼,供大家參考,具體內(nèi)容如下
讓客戶滿意是我們工作的目標(biāo),不斷超越客戶的期望值來(lái)自于我們對(duì)這個(gè)行業(yè)的熱愛(ài)。我們立志把好的技術(shù)通過(guò)有效、簡(jiǎn)單的方式提供給客戶,將通過(guò)不懈努力成為客戶在信息化領(lǐng)域值得信任、有價(jià)值的長(zhǎng)期合作伙伴,公司提供的服務(wù)項(xiàng)目有:域名與空間、虛擬主機(jī)、營(yíng)銷軟件、網(wǎng)站建設(shè)、景洪網(wǎng)站維護(hù)、網(wǎng)站推廣。1.RandomAccessFile
RandomAccessFile主要用于文件內(nèi)容的讀寫訪問(wèn)
2.訪問(wèn)模式
“r”:只讀方式。
“rw”:打開以便讀取和訪問(wèn),如果文件不存在則創(chuàng)建文件。
“rws”: 除了‘rw‘功能以外,文件內(nèi)容或者元數(shù)據(jù)更新時(shí)一同寫入。
“rwd”:除了‘rw‘功能以外,文件內(nèi)容更新時(shí)一同寫入。
3.使用案例
package test; import java.io.File; import java.io.FileNotFoundException; import java.io.IOException; import java.io.RandomAccessFile; public class RandomAccess { public static void main(String[] args) { try { File file = new File("C:\\img\\666.txt"); //打開文件 RandomAccessFile randomAccess = new RandomAccessFile(file,"rwd"); //訪問(wèn)文件 Long lenth = randomAccess.length(); //獲取文件長(zhǎng)度 System.out.println("lenth:"+lenth); randomAccess.seek(4); //設(shè)置指針位置 //讀取文件 int c = randomAccess.read(); //讀取一個(gè)字節(jié) System.out.println("c:"+c); System.out.println("c:"+(char)c); //轉(zhuǎn)換為字符 byte[] b = new byte[3]; //讀取字節(jié)數(shù)字,創(chuàng)建數(shù)組 randomAccess.read(b, 1, 2); //從指針1處讀取兩個(gè)字節(jié)寫入數(shù)組b中 String s = new String(b); //轉(zhuǎn)換為字符串 System.out.println("byte:"+s); //輸出 //寫入文件 File file2 = new File("C:\\img\\777.txt"); if(!file2.getParentFile().exists()){ file2.getParentFile().mkdirs(); } file2.createNewFile(); RandomAccessFile randomAccess2 = new RandomAccessFile(file2,"rwd"); //訪問(wèn)文件 randomAccess2.write(b); //寫入字符數(shù)組 //關(guān)閉文件 randomAccess.close(); randomAccess2.close(); } catch (FileNotFoundException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } } }