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.
我很确定这是可能的,但只是想检查一下。我想知道如何访问 apk 中的文件。该文件在我构建时被添加到 apk,但我不确定如何指定文件的位置(相对路径)。我已经给出了相对路径,但这似乎不起作用。
有没有人试过这个?
如果该文件位于 APK 的“assets”文件夹中,那么您可以像这样访问它:
InputStream is = context.getAssets().open("FILENAME");
文件名在哪里,包括相对于资产文件夹的FILENAME路径
FILENAME