首页 > 其他 > 详细

字符编码 转换流

时间:2020-09-27 11:40:24      阅读:24      评论:0      收藏:0      [点我收藏+]

技术分享图片

 

 技术分享图片

 

 技术分享图片

 

 技术分享图片

 

 技术分享图片

 

 技术分享图片

 

 技术分享图片

 

 技术分享图片

 

 技术分享图片

 

 技术分享图片

 

 技术分享图片

 

 技术分享图片

 

 技术分享图片

 

 技术分享图片

 

 

技术分享图片
 1 public class StreamDemo {
 2     public static void main(String[] args) throws IOException {
 3         InputStreamReader isr = new InputStreamReader(new FileInputStream("d:\\2.xml"),"GBK");
 4         OutputStreamWriter osw = new OutputStreamWriter(new FileOutputStream("d:\\1.xml"),"UTF-8");
 5         char[] chars = new char[2048];
 6         int len = 0;
 7         while ((len = isr.read(chars)) != -1) {
 8             osw.write(chars, 0, len);
 9         }
10         osw.close();
11         isr.close();
12     }
13 }
ISR/OSW

 

字符编码 转换流

原文:https://www.cnblogs.com/neoo9901/p/13737915.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!