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.
我有一个文件存储在 res/raw 中,我想知道如何写入该文件。我尝试了getResources,但它返回了一个inputStream。
不可能。如果您需要将资产复制到设备,请将文件存储在资产目录中。然后使用 AssetManager 流式传输并复制资产,以便将其写入磁盘或应用程序缓存。
您不应该编写应用程序资源。相反,尝试将资源复制到您的可写数据目录并在那里进行修改。Context根据您的需要,有许多方法可以帮助您找到合适的目录。
Context