本文實(shí)例為大家分享了Android九宮格圖片展示的具體代碼,供大家參考,具體內(nèi)容如下
專業(yè)公司可以根據(jù)自己的需求進(jìn)行定制,成都網(wǎng)站建設(shè)、做網(wǎng)站構(gòu)思過程中功能建設(shè)理應(yīng)排到主要部位公司成都網(wǎng)站建設(shè)、做網(wǎng)站的運(yùn)用實(shí)際效果公司網(wǎng)站制作網(wǎng)站建立與制做的實(shí)際意義
1.RandomAccessFile
RandomAccessFile主要用于文件內(nèi)容的讀寫訪問
2.訪問模式
“r”:只讀方式。
“rw”:打開以便讀取和訪問,如果文件不存在則創(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"); //訪問文件 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"); //訪問文件 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(); } } }
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。