字節(jié)流練習文件復制、使用字節(jié)流讀取中文的問題
字節(jié)流練習文件復制
文件復制的原理:
圖解:

?
?
明確:
數(shù)據(jù)源:F://aa.txt
數(shù)據(jù)的目的地:F://cc.txt
文件復制的步驟:
1,創(chuàng)建一個字節(jié)輸入流對象,構(gòu)造方法中要綁定的數(shù)據(jù)源
2,創(chuàng)建一個字節(jié)輸入流對象,構(gòu)造方法中綁定要寫入的目的地
3,使用字節(jié)輸出流對象中的read方法進行讀取
4,使用字節(jié)輸入流對象中writer方法進行寫入
5,釋放資源
案例:
public class Kaopei {
? ?/**
? ? * 文件復制的步驟:
? ? * <p>
? ? * 1,創(chuàng)建一個字節(jié)輸入流對象,構(gòu)造方法中要綁定的數(shù)據(jù)源
? ? * <p>
? ? * 2,創(chuàng)建一個字節(jié)輸出流對象,構(gòu)造方法中綁定要寫入的目的地
? ? * 3,使用字節(jié)輸出流對象中的read方法進行讀取
? ? * <p>
? ? * 4,使用字節(jié)輸入流對象中writer方法進行寫入
? ? * <p>
? ? * 5,釋放資源
? ? *
? ? * @param args
? ? */
? ?public static void main(String[] args) throws IOException {
// ? ? ? ?,創(chuàng)建一個字節(jié)輸入流對象,構(gòu)造方法中要綁定的數(shù)據(jù)源
? ? ? ?FileInputStream is = new FileInputStream("F://aa.txt");
// ? ? ? ? 2,創(chuàng)建一個字節(jié)輸出流對象,構(gòu)造方法中綁定要寫入的目的地
? ? ? ?FileOutputStream os = new FileOutputStream("F://cc.txt");
? ? ? ?int len = 0;
// ? ? ? ?3,使用字節(jié)輸出流對象中的read方法進行讀取
? ? ? ?while ((len = is.read()) != -1) {
// ? ? ? ? ? ? 4,使用字節(jié)輸入流對象中writer方法進行寫入
? ? ? ? ? ?os.write(len);
? ? ? ?}
// ? ? ? ? 5,釋放資源
? ? ? ?is.close();
? ? ? ?os.close();
? ?}
}
看運行結(jié)果:

?
?
考培成功
?
使用字節(jié)流讀取中文的問題
我們來看一下小測試:
public class FIlezijie {
? ?public static void main(String[] args) throws IOException {
? ? ? ?FileInputStream is = new FileInputStream("aa.txt");
? ? ? ?int len =0;
? ? ? ?while ((len=is.read())!=-1){
? ? ? ? ? ?System.out.println(len);
? ? ? ?}
? ? ? ?is.close();
? ?}
}
我們在當前文件下創(chuàng)建了一個文本文件,內(nèi)容寫的是? ?你好
然后我們使用字節(jié)讀取 獲取他
運行結(jié)果:

?
?那么我們給轉(zhuǎn)換成Char類型的試試

?
亂碼的方法展現(xiàn)出來
鏈接:https://www.dianjilingqu.com/436415.html