如何使用InputStream加载UTF-8文本文件

时间:2015-02-08 12:32:19

标签: java android utf-8 io inputstream

我想通过按下按钮将我的资源文件夹中的.txt文件加载到文本视图中。我这样做了,但我的问题是我的文本文件是UTF-8编码文本,一些奇怪的字符被复制到我的TextView而不是我的真实的话... 这是我写的代码和方法,但我不知道应该放在哪里" UTF-8"作为一个论点..

b1.setOnClickListener(new View.OnClickListener() {          
        @Override
        public void onClick(View arg0) {                
            try {
                InputStream iFile = getAssets().open("mytext.txt");
                String strFile = inputStreamToString(iFile);
                Intent intent=new Intent(MyActivity.this,SecondActivity.class);
                   intent.putExtra("myExtra", strFile);
                final int result=1;
                   startActivityForResult(intent, result);
            } catch (IOException e) {                   
                e.printStackTrace();
            }

public String inputStreamToString(InputStream is) throws IOException {
    StringBuffer sBuffer = new StringBuffer();
    DataInputStream dataIO = new DataInputStream(is);
    String strLine = null;
    while ((strLine = dataIO.readLine()) != null) {
        sBuffer.append(strLine + "\n");
    }
    dataIO.close();
    is.close();
    return sBuffer.toString();
}

感谢您的帮助; - )

1 个答案:

答案 0 :(得分:1)

以下代码将您的文件读入字节数组缓冲区并将其转换为字符串

public String inputStreamToString(InputStream is) throws IOException {
    byte[] buffer = new byte[is.available()];
    int bytesRead = is.read(buffer);
    return new String(buffer, 0, bytesRead, "UTF-8");
}