码迷,mamicode.com
首页 > 其他好文 > 详细

字节流写出中文。

时间:2020-06-17 23:43:58      阅读:60      评论:0      收藏:0      [点我收藏+]

标签:txt   字符串   字节数组   tput   new   close   字节   字符串转换   stream   

FileOutputStream fos = new FileOutputStream ("zzz.txt");

fos.write("我读书少,你不要骗我".getBytes()); //将字符串转换为字节数组,然后写出

fos.write("\r\n"getBytes());  //换到下一行

fos.write("我读书少,你知道吗".getBytes());  // 在第二行显示

fos.close();

字节流写出中文。

标签:txt   字符串   字节数组   tput   new   close   字节   字符串转换   stream   

原文地址:https://www.cnblogs.com/wangffeng293/p/13154939.html

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