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.
我有一个ListView由json数据组成的。我想使用文件存储内容。所以我想将ListView文本文件格式保存到我的 SDCard 中。有没有例子?谁能帮我?谢谢。
ListView
json
是的,当然,在将数据显示到 ListView 时,我确信您使用的是 JSONArray。
您可以轻松地将 JSONArray 或 JSONObject 转换为字符串。
例如:
String strArray = myJsonArray.toString(); String strObj = myJsonObject.toString();
现在,当您拥有字符串值时,您可以将其写入文件或存储到数据库中。