当我尝试打开res/raw文件夹中的文件时,我得到了。

InputStream in = Resources.getSystem().openRawResource(R.raw.eng_sample);


例外是:

android.content.res.Resources$NotFoundException: Resource ID #0X89890


我可以在eng_sample.txt的apk中看到文件res/raw/eng_sample.txt

最重要的是,当我执行R.raw.并按Ctrl-space时,给出文件eng_sample作为建议。

那是什么问题呢?我该如何解决?

预先感谢。

附言

我还尝试将文件eng_sample.txt放入main/assets。然后使用

InputStream in = context.getAssets().open("file:///android_asset/eng_sample.txt


但是现在我得到了IO异常。

也许有人可以告诉我如何使这种方法有效,而不是上面的方法?

最佳答案

我一直在出于相同目的使用此代码。你可以做这样的事情

BufferedReader mReader = null;
 try {
         mReader = new BufferedReader(
    new InputStreamReader(getAssets().open("eng_sample.txt")));
 String mLine;
 while ((mLine = mReader.readLine()) != null) {
       //do your stuff with line
       ...
    }
  } catch (IOException e) {
    //print stack trace
  } finally {
     if (mReader != null) {
          try {
                   mReader.close();
                } catch (IOException e) {
                 //print stack trace
           }
       }
   }


希望能帮助到你。

10-06 04:56