@sneakythrowspublic static void main(string args)
//建立檔案位元組輸入流(引數: 要讀取檔案指定的位址)
fileinputstream fileinputstream=new fileinputstream(file);
//建立檔案位元組輸出流(引數: 輸出檔案指定的位址)
fileoutputstream fileoutputstream=new fileoutputstream("c:/d/copyaa.txt");
//定義乙個陣列接受讀取到的內容 長度最好是1024的倍數
byte bytes = new byte[1024];
string text="";//定義控制台輸出改檔案內容 格式為字串
//定義乙個長度用來判斷是否讀取到最後一位,到最後一位返回-1
int len=0;
while ((len=fileinputstream.read(bytes)) != -1)
system.out.println(text);//輸出字串內容
}
Python 位元組流寫入檔案
用struct模組 三個函式 pack unpack calcsize 按照給定的格式 fmt 把資料封裝成字串 實際上是類似於c結構體的位元組流 pack fmt,v1,v2,按照給定的格式 fmt 解析位元組流string,返回解析出來的tuple unpack fmt,string 計算給定的...
寫入 讀取檔案
file類下面的方法 string str file.readalltext aa.txt system.text.encoding.getencoding utf 8 讀取檔案 console.writeline str console.read filestream類下面的方法 在當前目錄建立乙...
讀取寫入檔案
file1 open c users administrator desktop text 成績.txt w encoding gbk file1.write 羅恩 23 35 44 哈利 60 77 68 88 90 馬赫 97 99 89 91 95 99 媽富爾 100 85 90 file1...