JAVA字节流读写中文

一、问题

1.字节流读取中文的问题

字节流在读中文的时候有可能会读到半个中文,造成乱码 

2.字节流写出中文的问题

字节流直接操作的字节,所以写出中文必须将字符串转换成字节数组,写出回车换行 write("\r\n".getBytes());

二、代码

public static void main(String[] args) throws IOException {
   FileInputStream fis = new FileInputStream("yyy.txt");
   FileOutputStream fos = new FileOutputStream("zzz.txt");

   byte[] arr = new byte[4];
   int len;
   while((len = fis.read(arr)) != -1) {
      fos.write(new String(arr,0,len).getBytes());
   }
   fos.write("\r\n".getBytes());
   fos.write("我读书少,你不要骗我".getBytes());

   fis.close();
   fos.close();
}

 

你可能感兴趣的:(JAVA基础)