如何从SD卡读取json文件
我需要从 SD 卡读取 json 文件并在微调器中显示数据。有没有办法从 Android 中的文件中读取数据并在微调器中显示该文件的内容?
I need to read a json file from the SD card and display the data in the spinner. Is there any way to read the data from file in Android and display the contents of that file in spinner?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先从SD卡读取文件,然后解析该文件
Step-1
从 SD 卡的文件中检索数据。请参阅教程
步骤2
解析数据。请参阅如何解析 JSON 字符串
示例代码
First read the file from SD card and then parse that file
Step-1
Retrieve the data from file from SD card. see tutorial
Step-2
Parse the data. See How to parse JSON String
Sample code