您好,登錄后才能下訂單哦!
本文實例為大家分享了Android九宮格圖片展示的具體代碼,供大家參考,具體內容如下
1.RandomAccessFile
RandomAccessFile主要用于文件內容的讀寫訪問
2.訪問模式
“r”:只讀方式。
“rw”:打開以便讀取和訪問,如果文件不存在則創建文件。
“rws”: 除了‘rw‘功能以外,文件內容或者元數據更新時一同寫入。
“rwd”:除了‘rw‘功能以外,文件內容更新時一同寫入。
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(); //獲取文件長度 System.out.println("lenth:"+lenth); randomAccess.seek(4); //設置指針位置 //讀取文件 int c = randomAccess.read(); //讀取一個字節 System.out.println("c:"+c); System.out.println("c:"+(char)c); //轉換為字符 byte[] b = new byte[3]; //讀取字節數字,創建數組 randomAccess.read(b, 1, 2); //從指針1處讀取兩個字節寫入數組b中 String s = new String(b); //轉換為字符串 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); //寫入字符數組 //關閉文件 randomAccess.close(); randomAccess2.close(); } catch (FileNotFoundException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } } }
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。