每日練習IO之FileStream

2021-10-08 16:11:56 字數 1692 閱讀 9492

直接從**理解把

public

static

void

main1

(string[

] args)

for(

int i =

0; i < n ; i++)}

}catch

(ioexception e)

//  中文的讀寫

public

static

void

main2

(string[

] args)

throws ioexception

}*/// 假設buf中讀取的中文沒有被拆斷的情況

n = is.

read

(buf)

; string s =

newstring

(buf,

0,n,

"utf-8");

system.out.

println

(s);

}}

// 中文讀去2

public

static

void

main

(string[

] args)

throws ioexception

}*/// 批量讀取

char

buf =

newchar

[1024];

int n;

while

((n = reader.

read

(buf))!=

-1)}

}}// 這種讀取 沒有上邊的讀取靈活 預設識別的識別的字符集是 utf-8

// reader reader = new filereader("測試目錄\\中文.txt");

}

//  如果檔案不存在,則會建立檔案(失敗的條件等同於平時建立檔案失敗的條件)

// 如果檔案存在,則覆蓋裡面的內容

try(outputstream os =

newfileoutputstream

("測試目錄\\write.txt"))

catch

(ioexception e)

}

public

static

void

zifu1()

throws ioexception }}

}}public

static

void

zifu2()

throws ioexception }}

}public

static

void

zijie()

throws ioexception

}}

public

static

void

main

(string[

] args)

throws ioexception

out.

flush()

;}}}

Python每日練習之語言元素

語言元素練習 version 0.1 author 王寬 date 2021 03 21 將華氏溫度轉換為攝氏溫度 f 1.8c 32 f float input 輸入華氏溫度 c f 32 1.8 print c print 1f華氏度 1f攝氏度 f,c 計算圓的面積 radis float i...

每日練習 5

c c 1 clone是fork的公升級版本,不僅可以建立程序或者執行緒,還可以指定建立新的命名空間 namespace 有選擇的繼承父程序的記憶體 甚至可以將建立出來的程序變成父程序的兄弟程序等等 2 引用和多型的關係 引用可以作為產生多型效果的手段 3 include void f char p...

每日練習 14

c 1.void func char p 10 p是裝10個char型別資料的陣列的引用,其結果類似於char p 10 printf d n sizeof p 2.在組合時,在組合類的析構函式中不需要顯式呼叫其成員物件的析構函式 3.int main 注意沒有 n就不會輸出,會被儲存在緩衝區中 4...