如何在Eclipse中处理俄语文本?

时间:2014-05-23 05:28:50

标签: eclipse

我需要对一些俄语文本文件进行排序,当我尝试读取字符串并将其打印出来时,它们都会出现乱码并且像盒子一样。看起来没有俄罗斯支持我的日食。我下载了语言包插件,但我无法弄清楚如何安装它。 请帮助。

 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);

          }

1 个答案:

答案 0 :(得分:0)

你怎么能确定它是一个日食问题?它可能是:

  • 文本文件的编码
  • 您用于读取文本文件的方法(例如:InputStreamReader使用默认字符集,除非您在构造函数中明确指定它)
  • 用于将文本文件存储在内存中的方法
  • 用于打印文本的方法
  • 您用于查看已打印文本的方法