1

我正在制作一个 android 程序,它将基于来自 php 网页的 JSON 在 textviews 上显示数据。

这是我的 JSON 示例,它已经显示在 php 页面上:

[{"ID":"1","temperature":"33","max_humidity":"33","min_humidity":"34","lowtide":"35","hightide":"35","sunrise":"500","sunset":"530","moonrise":"530","moonset":"540","illumination":"45%"}]

我想让我的文本视图之一显示“温度:33”等。

我尝试使用 httpclient 和字符串缓冲区在我的 android 程序中获取我的网页的源代码,然后只解析 JSON 文本然后传递给一个变量,但这对我不起作用。我需要该网页,因为我的数据库在那里(这是我的 JSON 的来源)

有什么非常简单的方法可以做到这一点?

4

2 回答 2

4

好的,这就是你需要的。不需要第三方库。

try{
    String jsonStr = getFromWeb(); // jsonStr = {"ID":"1","temperature":"33","max_humidity":"33","min_humidity":"34","lowtide":"35","hightide":"35","sunrise":"500","sunset":"530","moonrise":"530","moonset":"540","illumination":"45%"}]
        JSONObject obj = new JSONObject(jsonStr);
        String temperature = obj.getString("temperature");
        TextView tv = (TextView)findViewById(R.id.yourtextviewid);
        tv.setText("Temperature: " + temperature);
    }catch (JSONException e) {
      e.printStackTrace();
    }
于 2012-12-10T04:37:16.650 回答
0

Gson 是一个很棒的 json 解析库:http ://code.google.com/p/google-gson/

于 2012-12-10T03:31:10.810 回答