I O流通過單個位元組和陣列完成檔案複製的多種方式

2021-08-25 08:51:08 字數 1705 閱讀 4774

基礎位元組流 陣列 和單個位元組 完成檔案複製

public class basicebytefileio 

// ``單個位元組複製檔案

private static void method01(file start, file end) throws exception

fis.close();

fos.close();

} // ··陣列複製檔案

private static void method02(file start, file end) throws exception

fis.close();

fos.close();

}}

基礎字元流 單個字元、陣列完成檔案複製

public class basicecharfileio 

// ··單個字元完成複製

private static void method01(string start, string end) throws exception

// 03.關閉流

w.close();

r.close();

} // ··陣列完成檔案複製

private static void method02(string start, string end) throws exception

// 03.關閉流

w.close();

r.close();

}}

高效位元組流 陣列 和單個位元組 完成檔案複製

public class efficientbytefileio 

// ··單個位元組完成檔案複製

private static void method01(file start, file end) throws exception

bis.close();

bos.close();

is.close();

os.close();

} // ··陣列完成檔案複製

private static void method02(file start, file end) throws exception

bis.close();

bos.close();

is.close();

os.close();

}}

高效字元流 單個字元、陣列完成檔案複製

public class efficientcharfileio 

// ··單個位元組完成複製

private static void method01(string start, string end) throws exception

// 03.關閉流

br.close();

bw.close();

w.close();

r.close();

} // ··陣列完成檔案複製

private static void method02(string start, string end) throws exception

// 03.關閉流

br.close();

bw.close();

w.close();

r.close();

}}

c中單個字元所佔位元組

c語言環境下 char a a sizeof char 1 sizeof a 1 sizeof a 4 includeusing namespace std int main sizeof a 1 sizeof char 1 sizeof a 4 請按任意鍵繼續.c 語言環境下 char a a s...

解決flash不能寫入單個位元組小記

void program data u16 flash addr,u8 buffer,u8 len flash lock flash memtype prog flash addr address flash addr for i 0 i len i return 1 void program da...

io位元組流和字元流

2014 11 30 晚上 位元組流system.in是基本的 inputstream 流,system.out 是基本的 outputstream 流,如果要實現字元流從控制台讀入 bufferedreader bufferedreader new bufferreader reader inpu...