java轉(zhuǎn)換流
/**
* 轉(zhuǎn)換流InputStreamReader/OutputStreamWriter
*/
public class ConvertStream1 {
? ?public static void main(String[] args) {
? ? ? ?try (
? ? ? ? ? ? ? ?InputStream in = System.in;
????????????????//System.in是InputStream對(duì)象,用于讀取鍵盤(pán)輸入/數(shù)據(jù)源的字節(jié),是字節(jié)流、節(jié)點(diǎn)流,每次.read()只能讀取一個(gè)字節(jié),當(dāng)用Scanner(System.in)的nextLine()方法時(shí)會(huì)將字節(jié)流轉(zhuǎn)換為字符流(使用字符集進(jìn)行解碼),再通過(guò)BufferedReader讀取整行內(nèi)容
????????????????OutputStream out = System.out;
????????????????//System.out是PrintStream對(duì)象,PrintStream繼承FilterOutputStream繼承OutputStream,用于顯示接收到的內(nèi)容,是字節(jié)流、節(jié)點(diǎn)流,System.out.println()方法同樣將out字節(jié)流外套轉(zhuǎn)換流再外套緩沖流,通過(guò)BufferedWriter輸出整行內(nèi)容(字符數(shù)組),通過(guò)OutputStream將字符數(shù)組轉(zhuǎn)換為字節(jié)數(shù)組(使用字符集進(jìn)行編碼),通過(guò)out將字節(jié)數(shù)組輸出
????????????????InputStreamReader isr = new InputStreamReader(in);
????????????????//InputStreamReader處理字節(jié)流,實(shí)現(xiàn)字節(jié)流向字符流的轉(zhuǎn)換,是處理流、字符流,構(gòu)造器第二個(gè)參數(shù)用于設(shè)定字符集,不填默認(rèn)使用utf-8字符集,將讀取到的字節(jié)轉(zhuǎn)換為字符的過(guò)程是解碼的過(guò)程,按照字符集的規(guī)則將不同長(zhǎng)度的字節(jié)bytes轉(zhuǎn)換為2字節(jié)的char字符(unicode字符集每個(gè)字符占2byte),字節(jié)本身只是01二進(jìn)制數(shù),需要使用和編碼相同的字符集解碼才能正確的還原字符
????????????????OutputStreamWriter osw = new OutputStreamWriter(out);
????????????????//OutputStreamWriter將字節(jié)輸出流轉(zhuǎn)換為字符輸出流,構(gòu)造器第二個(gè)參數(shù)用于設(shè)定字符集,不填默認(rèn)使用utf-8字符集,將字符按照字符集的規(guī)則轉(zhuǎn)換為不同長(zhǎng)度的字節(jié)bytes,再通過(guò)out將bytes輸出,對(duì)于輸出的內(nèi)容/二進(jìn)制數(shù)只有用相同的字符集解碼才能還原成正確的字符
? ? ? ? ? ? ? ?BufferedReader br = new BufferedReader(isr);
? ? ? ? ? ? ? ?//將轉(zhuǎn)換流傳給字符緩沖流
? ? ? ? ? ? ? ?BufferedWriter bw = new BufferedWriter(osw)
? ? ? ?){
? ? ? ? ? ?String inp;
? ? ? ? ? ?do {
? ? ? ? ? ? ? ?bw.write("請(qǐng)輸入:");
? ? ? ? ? ? ? ?bw.flush();
? ? ? ? ? ? ? ?inp = br.readLine();
? ? ? ? ? ? ? ?//.readLine()是讀取一行內(nèi)容,當(dāng)System.in等待用戶輸入完成字符串后.read()只能讀取一個(gè)字節(jié)的內(nèi)容,通過(guò)嵌套處理流調(diào)用.readLine()將一行內(nèi)容全部讀取
? ? ? ? ? ? ? ?bw.write("請(qǐng)確認(rèn)您輸入的內(nèi)容是否正確:" + inp);
? ? ? ? ? ? ? ?//使用字符處理流.write()
? ? ? ? ? ? ? ?bw.newLine();
? ? ? ? ? ? ? ?bw.write("確認(rèn)Y/N:");
? ? ? ? ? ? ? ?bw.flush();
? ? ? ? ? ? ? ?//flush()在每一段輸出的末尾使用,不需要每輸出一次執(zhí)行一遍
? ? ? ? ? ? ? ?inp = br.readLine();
? ? ? ? ? ?} while (!"y".equalsIgnoreCase(inp));
? ? ? ?}catch (Exception e){
? ? ? ? ? ?e.printStackTrace();
? ? ? ?}
? ? ? ?//System.out可以輸出字節(jié)到控制臺(tái),當(dāng)BufferedWriter寫(xiě)入字符串String時(shí)將字符串變?yōu)樽址麛?shù)組char[],后續(xù)執(zhí)行flush時(shí),調(diào)用內(nèi)置的OutputStreamWriter,通過(guò)流編碼器將字符數(shù)組char[]根據(jù)設(shè)定的字符集charset轉(zhuǎn)化為字節(jié)數(shù)組byte[],這個(gè)過(guò)程是編碼的過(guò)程
? ? ? ?//System.out將編碼后的字節(jié)數(shù)組byte[]輸出到控制臺(tái),控制臺(tái)再對(duì)bytes進(jìn)行解碼,轉(zhuǎn)化為字符串/文本顯示出來(lái)
? ? ? ?try (BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream("iostream/testFile4.txt")));
? ? ? ? ? ?BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(new FileOutputStream("iostream/testFile5.txt")))){
? ? ? ? ? ?//字節(jié)流外面套轉(zhuǎn)換流再套緩沖流
? ? ? ? ? ?int num = 1;
? ? ? ? ? ?for (String line = br.readLine();line!=null;line = br.readLine()){
? ? ? ? ? ? ? ?bw.write(num+".\t"+line);
? ? ? ? ? ? ? ?//字節(jié)流無(wú)法使用拼接字符串添加行號(hào),通過(guò)嵌套后使用緩沖流的write,作用同BufferedWriter(FileWriter)的write,而FileWriter對(duì)象內(nèi)部也會(huì)生成OutputStreamWriter(FileOutputStream)對(duì)象
? ? ? ? ? ? ? ?bw.newLine();
? ? ? ? ? ? ? ?num++;
? ? ? ? ? ?}
? ? ? ? ? ?bw.flush();
? ? ? ?}catch (Exception e){
? ? ? ? ? ?e.printStackTrace();
? ? ? ?}
? ?}
}