java IO流之四 使用转换流InputStreamReader和OutputStreamWriter

 当字节流和字符流之间需要转化的时候,或者要对字节数据进行编码转换的时候,就需要使用转换流

 

[java]  view plain copy
  1. package org.example.io;  
  2.   
  3. import java.io.File;  
  4. import java.io.FileInputStream;  
  5. import java.io.FileOutputStream;  
  6. import java.io.InputStreamReader;  
  7. import java.io.OutputStreamWriter;  
  8.   
  9. public class TestStreamReader {  
  10.   
  11.     public static void main(String[] args) throws Exception {  
  12.         File file = new File("E:\\b.txt");  
  13.         if (!file.exists()) {  
  14.             file.createNewFile();  
  15.         }  
  16.         OutputStreamWriter out = new OutputStreamWriter(new FileOutputStream(file), "GBK");  
  17.         out.write("hello world,你好世界");  
  18.         out.close();  
  19.   
  20.         InputStreamReader in = new InputStreamReader(new FileInputStream(file), "gbk");  
  21.         char[] cc = new char[1024];  
  22.         int n = 0;  
  23.         String str = "";  
  24.         while ((n = in.read(cc)) != -1) {  
  25.             str += new String(cc, 0, n);  
  26.         }  
  27.         in.close();  
  28.         System.out.println(str);  
  29.     }  
  30.   
  31. }  
  32.  

你可能感兴趣的:(java,转换流)