3 7輸入與輸出

2021-10-05 11:45:52 字數 910 閱讀 4894

1.建立scanner物件

scanner in =

newscanner

(system.in)

;

2.scanner api

string nextline()

;string next()

;int

nextint()

;double

nextdouble()

;boolean

hasnext()

;boolean

hasnextint()

;boolean

hasnextdouble()

;

3.例子

public

class

test

system.out.

println

(names);}

}

1.建立scanner,讀取檔案

scanner infile =

newscanner

(path.of(

"myfile.txt"

),standardcharsets.utf_8)

;

如果檔案不存在,會產生異常

2.建立printwriter寫入檔案

printwriter out =

newprintwriter

("myfile.txt"

,standardcharsets.utf_8)

;

如果檔案不存在,會建立檔案。

如果檔案無法建立,會產生異常。

out可以呼叫print、println、printf命令

Python3 7學習筆記03 輸入與輸出

python3.7學習筆記03 輸入與輸出。本文輸出。是指列印在編輯器的控制台。輸入是指在控制台上輸入值來執行程式 print 單行列印 print 列印1 列印2 3 for i in range 5 print i,end d python3.7 python3.exe d pythonproj...

輸入與輸出

在c 程式中,輸入與輸出可以看做是一連串的資料流,輸入即可視為從檔案或鍵盤中輸入程式中的一串資料流,而輸出則可以視為從程式中輸出一連串的資料流到顯示屏或檔案中。在編寫c 程式時,如果需要使用輸入輸出時,則需要包含標頭檔案 在 中定義了用於輸入輸出的物件,例如常見的 cin 表示標準輸入 cout 表...

輸入與輸出

2.文字輸入與輸出 3.讀寫二進位制資料 4.zip文件 物件序列化 反序列化 操作檔案 記憶體對映檔案 輸入流 輸出流 inputstream outputstream read write int b 均為阻塞方法 應該被正確關閉。注意 close flush 均會沖刷輸出流的緩衝區,如果不正確...