Android方式下载并立即显示数据

发布于 2024-11-09 14:20:35 字数 96 浏览 0 评论 0原文

想象一下您的服务器上有数据。您应该下载一些 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

棒棒糖 2024-11-16 14:20:35

当您下载 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文