0

我正在尝试从原始文件夹中读取文本文件,除了一个问题外,它运行良好。

http://imageshack.us/photo/my-images/217/inputt.jpg/

如图所示,问题在于文本文件中的任何引号“”或逗号',它会显示这个问号符号。

代码:

try {
        Resources res = getResources();
        InputStream in_s = res.openRawResource(R.raw.hr_consultant);

        byte[] b = new byte[in_s.available()];


        in_s.read(b);

        tv_data.setText(new String(b));
    } catch (Exception e) {
        // e.printStackTrace();
        tv_data.setText("Error: can't show help.");
    }

注意:raw 中的文本文件被称为 int 值,因此其他 Reader 类型可能不起作用。所以有什么想法吗?

4

1 回答 1

0

感谢上帝,
当您完成文本文件时,我找到了解决该问题的方法;

  • 选择文件 > 另存为
  • 将“编码”属性编辑为 UTF-8
于 2012-06-22T04:17:49.460 回答