java获取本地文件乱码_java读取本地文件中文乱码问题

客户的服务器美国的服务器,没有中文utf-8字符集,java读取的时候中文乱码。

java读取文件的方式如下:

FileUtils.readFileToString(file,fileEncode);

解决方法:

1.安装中文字符集。

2.使用第三方判断文件字符集的jar包。资源如下:juniversalchardet-1.0.3.jar .代码如下:

public static String getCharset(String path) {

File file = new File(path);

UniversalDetector detector = new UniversalDetector(null);

try(InputStream is = new FileInputStream(file)) {

byte[] bytes = new byte[1024];

int nread;

if ((nread = is.read(bytes)) > 0 && !detector.isDone()) {

detector.handleData(bytes, 0, nread);

}

} catch (Exception localException) {

System.out.println("detected code:"+localException);

}

detector.dataEnd();

String encode = detector.getDetectedCharset();

/** default UTF-8 */

if ((encode == null || encode.length() == 0)) {

encode = "UTF-8";

}

detector.reset();

return encode;

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值