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

JAVA本地TXT文件解决中文乱码问题

时间:2019-12-22 16:14:14      阅读:79      评论:0      收藏:0      [点我收藏+]

标签:exists   int   catch   window   readline   print   reader   ati   except   

import java.io.*;

public class ReadFile {
public static void main(String[] args) {

try {
File file = new File("E:\\JavaLog/logs/1.txt");
if (file.isFile() && file.exists()) {
//读取的时指定GBK编码格式,若中文出现乱码请尝试utf-8,window默认编码格式为GBK
BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(file), "gbk"));
String lineTxt = null;
while ((lineTxt = br.readLine()) != null) {
System.out.println(lineTxt);
}
br.close();
} else {
System.out.println("文件不存在!");
}
} catch (Exception e) {
System.out.println("文件读取错误!");
}
}
}

 

原文:https://www.cnblogs.com/hechenhao/p/7773721.html

JAVA本地TXT文件解决中文乱码问题

标签:exists   int   catch   window   readline   print   reader   ati   except   

原文地址:https://www.cnblogs.com/peachh/p/12079976.html

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