Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试从 android 的 assets 文件夹中寻找一种在 Activity 中打开文本文件的方法。
我已经对该主题进行了一些 RnD,但找不到与我的需求完全匹配的答案。 我的项目非常需要打开文本文件。
任何帮助将不胜感激。
InputStream is = this.getAssets().open("file.txt"); BufferedReader reader = new BufferedReader(new InputStreamReader(is)); String line; while ((line = reader.readLine()) != null) { // use line variable } reader.close();