我需要对一些俄语文本文件进行排序,当我尝试读取字符串并将其打印出来时,它们都会出现乱码并且像盒子一样。看起来没有俄罗斯支持我的日食。我下载了语言包插件,但我无法弄清楚如何安装它。 请帮助。
FileInputStream fstream = new FileInputStream("c:\\textfile.txt");
// Get the object of DataInputStream
DataInputStream in = new DataInputStream(fstream);
BufferedReader br = new BufferedReader(new InputStreamReader(in));
String strLine;
ArrayList<String> allLines = new ArrayList<String>();
//Read File Line By Line
while ((strLine = br.readLine()) != null) {
allLines.add(strLine);
System.out.println(strLine);
}
答案 0 :(得分:0)
你怎么能确定它是一个日食问题?它可能是: