码迷,mamicode.com
首页 > 编程语言 > 详细

Java - io输入输出流 --转换流

时间:2018-12-02 15:23:41      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:span   .com   except   输入输出   oid   cep   tst   stream   http   

 

转换流  转换输出流 OutputStreamWriter:

说明:

 

  1. /*
  2. * OutputStreamWriter 这个类的作用
  3. * 就是指定输出流的编码格式
  4. * 这个类的构造方法 需要传递 一个输出流的对象
  5. * FileOutputStream fos = new FileOutputStream("e:gu.txt");
  6. * OutputStreamWriter osw = new OutputStreamWriter(fos,"utf-8");
  7. *
  8. *
  9. * */

代码:

   

  1. public static void main(String[] args)throws Exception {
  2. //创建一个字节输出流的对象
  3. FileOutputStream stream = new FileOutputStream("e:gu.txt");
  4. //创建转换流的对象
  5. OutputStreamWriter osw = new OutputStreamWriter(stream,"utf-8"); //第二个参数如果不写就默认Gbk格式
  6. osw.write("古斌牛逼");
  7. osw.close();
  8. }

 

 运行结果:

技术分享图片

 

Java - io输入输出流 --转换流

标签:span   .com   except   输入输出   oid   cep   tst   stream   http   

原文地址:https://www.cnblogs.com/gu-bin/p/10053514.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!