我是靠谱客的博主 隐形含羞草,最近开发中收集的这篇文章主要介绍处理使用ByteArrayOutputStream读取文件中文乱码情况,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

最开始:
ByteArrayOutputStream baos=new ByteArrayOutputStream();
int length=0;
byte[] buffer=new byte[1024];
while((length=is.read(buffer))!=-1){
baos.write(buffer, 0, length);
}
is.close();
baos.close();
Thread thread = new IPSErTask(baos.toString());
这样的处理会导致文件中的中文乱码。
解决方案如下:
将读取到的数据强制转化成UTF-8
ByteArrayOutputStream baos=new ByteArrayOutputStream();
int length=0;
byte[] buffer=new byte[1024];
while((length=is.read(buffer))!=-1){
baos.write(buffer, 0, length);
}
is.close();
baos.close();
byte[] lens = baos.toByteArray();20190312
String result = new String(lens,“UTF-8”);
Thread thread = new IPSErTask(result)
这样处理之后乱码问题就解决了。

最后

以上就是隐形含羞草为你收集整理的处理使用ByteArrayOutputStream读取文件中文乱码情况的全部内容,希望文章能够帮你解决处理使用ByteArrayOutputStream读取文件中文乱码情况所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(57)

评论列表共有 0 条评论

立即
投稿
返回
顶部