字节流中文乱码处理(转换流) 发表于 2020-06-17 更新于 2021-09-12 分类于 Java , I/O 阅读次数: 转换流12345678910public void LuanMa(){ FileOutputStream fos = new FileOutputStream("X:\\xxx.xxx"); //BufferedOutputStream bos = new BufferedOutputStream(fos);//缓冲流自动处理乱码 OutputStreamWriter osw = new OutputStreamWriter(fos,"UTF-8");//UTF-8,GBK等 //fos.write("hello 中国".getBytes());//产生乱码 osw.write("hello 中国"); //bos.close(); osw.close(); fos.close();} ------ THEEND ------ 欢迎关注我的其它发布渠道 WeChat RSS