我正在尝试从原始文件夹中读取文本文件,除了一个问题外,它运行良好。
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 类型可能不起作用。所以有什么想法吗?