Android方式下载并立即显示数据
想象一下您的服务器上有数据。您应该下载一些 XML,解析它并在活动中显示,而不将该数据保存到数据库中。
您将使用哪种异步操作方式来下载数据以及如何将其传递给活动?
Imagine that you have data on the server. You should download some XML, parse it and show in activity without saving this data into database.
Which way of async operations you will use to download data and how you will pass it to activity?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您下载 ascii 文件时,它们会被读入字符串(http://www.helloandroid.com/tutorials/how-download-fileimage-url-your-device),然后可以对其进行解析(http://www.anddev .org/parsing_xml_from_the_net_-_using_the_saxparser-t353.html)。此方法从不将数据保存到外部存储。它只存在于 RAM 中。
When you download ascii files they are read in to a string (http://www.helloandroid.com/tutorials/how-download-fileimage-url-your-device) which can then be parsed (http://www.anddev.org/parsing_xml_from_the_net_-_using_the_saxparser-t353.html). This method never saves data to external storage. It would only exist in RAM.