我得到除了當我嘗試打開res/raw
文件夾中的文件。Android開發,原始資源無法找到
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
作爲建議給出。
然後是什麼問題?我該如何解決?
非常感謝提前。
P.S.
我也嘗試把文件eng_sample.txt
納入main/assets
。然後提取文件與
InputStream in = context.getAssets().open("file:///android_asset/eng_sample.txt
但現在我得到一個IO異常。
也許有人可以告訴我如何使這種方法工作,而不是上面的那個?