簡單的輸入輸出流(2)

2021-07-26 15:36:02 字數 1112 閱讀 6915

從乙個文字檔案中讀取資料

public

class

fileinputstreamdemo1

mystream.close();

} catch (filenotfoundexception e) catch (ioexception e)

}public

static

void

main(string args)

}

簡單的輸出流

輸入乙個字元到文字中

public

class

demo1 catch (filenotfoundexception e) catch (ioexception e)

}

執行結果為a,因為ascii碼97對應的字元為『a』;

輸出乙個陣列

/** * 輸出乙個陣列

*/public

static

void

test2() catch (filenotfoundexception e) catch (ioexception e)

}

輸出結果為abcde

輸出字串

public

static

void

test3() catch (filenotfoundexception e) catch (ioexception e)

}

執行結果為:i am a good man! 。

將乙個檔案的內容輸出到另乙個檔案中

public

static

void

copy()

os.flush();

os.close();

} catch (filenotfoundexception e)

catch (ioexception e)

}

Java輸入輸出(2) 流

1.流的分類。輸入 輸出都是從程式執行所在記憶體的角度來劃分的。2.位元組流操作的最小資料單元是8位的位元組,字元流操作的最小資料單元是16位的字元。3.使用fileinputstream讀取自身 public class fileinputstreamtest 關閉檔案輸入流,放在finally塊...

檔案流的簡單輸入輸出

檔案流的簡單輸入輸出 也只有最簡單的用法。要實現檔案流,首先要有標頭檔案fstream 輸出流 將電腦的東西輸出到資料夾裡,或者叫寫到資料夾裡。基本格式 第一種ofstream out f file.txt 開啟f盤下的file.txt檔案,開啟寫功能。out 123456 往資料夾寫入123456...

輸入輸出流的簡單理解

變數,陣列和物件中儲存的資料是暫時存在的,程式結束它們就會丟失.為了能夠永久的儲存程式建立的資料,需要將它們儲存在磁碟檔案中,這樣i o技術就產生了 輸入流 從檔案,網路,壓縮包或其它資料來源寫入記憶體中目的地 inputstream,reader 輸出流 源地寫出到檔案,網路,壓縮包或其它資料輸出...