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.
我在 Eclipse 的 android 项目中的“文件”目录中有一个文件,但是当在我的设备或设备模拟器中运行应用程序时,我找不到这个目录
我想在安装过程中将此文件放入 /data/data/MYPACKAGE/files/mifile.txt
将其放在 assets 文件夹下并使用 getAssets() 访问它
InputStream inputStream = getAssets().open("files/myfile.txt");
这将从文件中返回 InputStream 然后您可以读取它。
您可以使用getRessourceAsStream(String path)或简单地使用 assets 文件夹和getAssets()
getRessourceAsStream(String path)
getAssets()