将 JSON 数据检索到列表视图中

发布于 2024-10-27 17:11:10 字数 101 浏览 0 评论 0原文

我成功打开了 Httpclient 连接。现在我想从 JSON 选择数据并将其显示在列表中。我用谷歌搜索了半天,但找不到任何帮助。示例项目或代码片段会非常有帮助。

I successfully opened Httpclient connection. Now I want to select data from JSON and show it in a list. I googled it from half day but can't find any help. A sample project or code snippet would be really helpful.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

你与清晨阳光 2024-11-03 17:11:10

过去我使用 gson 来解析 JSON。 SDK中提供的org.json包看起来有点低级。

现在我想从 JSON 中选择数据
并将其显示在列表中。

当您说“选择数据”时,您的意思是使用查询来检索数据的子集吗? jxpath 看起来是一个有趣的解决方案。如果您只是显示整个 JSON 数据,那么您应该能够简单地将 gson 的输出包装在适配器中。

我用谷歌搜索了一下
半天了,但找不到任何帮助。

最后一个会引导您这个问题< /a>,您的是完全相同的副本。

示例项目或代码片段将
真的很有帮助。

例子比比皆是!从上面的搜索链接来看:

  • gson解析
  • < a href="https://bobbyprabowo.wordpress.com/2010/11/25/android-json-processing-using-gson-and-display-in-on-a-listview/" rel="nofollow noreferrer"> gson解析并显示在ListView中

In the past I've used gson to parse JSON. The org.json package provided in the SDK seems a little low-level.

Now I want to select data from JSON
and show it in a list.

When you say "select data" do you mean use queries to retrieve subsets of your data? jxpath looks like an interesting solution. If you're just displaying the entire JSON data then you should be able to simply wrap gson's output in an adapter.

I googled it
from half day but can't find any help.

The last one would have led you to this question, of which yours is an exact duplicate.

A sample project or code snippet would
be really helpful.

Examples abound! From the above search links:

束缚m 2024-11-03 17:11:10

您必须使用 http://developer.android.com/reference/org /json/JSONTokener.html 或类似的内容来解码 JSON 数据。

完成此操作后,您需要更新列表视图上的列表模型。

我的印象是,对于您的应用程序 http://developer.android.com /reference/android/widget/ArrayAdapter.html 可能适合您的需求。

如果您已有阵列适配器,则可能只需要更新该适配器即可。

不过我没有具体细节。希望这会让您走上正轨。

You'll have to use http://developer.android.com/reference/org/json/JSONTokener.html or something similar to decode your JSON data.

After doing that you need to update your list model on your list view.

I'm under the impression that for your application http://developer.android.com/reference/android/widget/ArrayAdapter.html might suit your needs.

If you already have an array adapter, you probably just need to update that adapter.

I don't have specifics on that though. Hopefully this will put you on the right track.

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