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.
我正在使用肥皂解析器处理 Web 服务。我需要从 Web 服务中检索值并将其存储在本地。我有很多字符串值。
我的问题是,如何以及在哪里存储我的应用程序中的所有字符串值。就像,这种存储通常我们使用原始文件夹。
提前致谢
看看@Android 数据存储
Raw和Asset文件夹是只读的。你不能修改里面的内容,虽然你只能阅读它。
Raw
Asset
在您的情况下,您应该使用SQLite数据库或SharedPreference保存数据。另一种技术是将您的数据保存在 sd 卡内创建的文件中,但您应该评估可行性。
SQLite
SharedPreference