IO流練習 檔案的拷貝

2021-10-03 05:01:56 字數 1042 閱讀 4892

io位元組流 拷貝方法

//選擇流

// 要拷貝的檔案(輸入流檔案)

file old =

newfile

(oldfile)

;// 要拷貝到的檔案(輸出流檔案);

file new1 =

newfile

(newfile)

;// 建立檔案輸入流

inputstream is = null;

// 建立檔案輸出流

outputstream ops = null;

try ops.

flush()

;}catch

(filenotfoundexception e)

catch

(ioexception e)

finally

}catch

(ioexception e)

try}

catch

(ioexception e)

}

io字元流純文字拷貝方法

// 要拷貝的檔案(輸入流檔案)

file old =

newfile

(oldtext)

;// 要拷貝到的檔案(輸出流檔案);

file new1 =

newfile

(newtext)

; reader reader = null;

writer writer = null;

char

cr =

newchar

[1024];

int len =-1

;try

writer.

flush()

;}catch

(ioexception e)

finally

}catch

(ioexception e)

try}

catch

(ioexception e)

}

IO流實現檔案的拷貝

以記憶體為參考 字元流 對應的父類 字元讀入流 將資料輸入記憶體 reader 字元寫出流 將資料從記憶體取出 writer 先處理字元流 例項 以磁碟的儲存為例,將內容寫入檔案 public static void main string args throws ioexception publi...

io流的檔案拷貝方法

使用fileinputstream,fileoutputstream 完成檔案的拷貝 複製。在拷貝的過程中應該是一邊讀一邊寫的 使用以上位元組流進行檔案的拷貝時候,檔案的型別隨意,什麼型別的檔案都可以拷貝 public class copy catch filenotfoundexception e...

IO流的練習

定義學生類,包含姓名 string name 性別 string gender 年齡 int age 三個屬性,生成空參有參構造,set和get方法,tostring方法 2.鍵盤錄入6個學員資訊 錄入格式 張三,男,25 要求有兩個相同的資訊,將6個學員資訊存入到arraylist集合中 3.將存...