android JSON解析數(shù)據(jù) android解析天氣預(yù)報(bào)
概要
筆者近期做到對(duì)天氣預(yù)報(bào)JSON數(shù)據(jù)解析,在此小記。
天氣預(yù)報(bào)接口:http://wthrcdn.etouch.cn/weather_mini?citykey=101200101
JSON數(shù)據(jù)如下:
{
"desc": "OK",
"status": 1000,
"data": {
"wendu": "14",
"ganmao": "天氣轉(zhuǎn)涼,空氣濕度較大,較易發(fā)生感冒,體質(zhì)較弱的朋友請(qǐng)注意適當(dāng)防護(hù)。",
"forecast": [
{
"fengxiang": "無(wú)持續(xù)風(fēng)向",
"fengli": "微風(fēng)級(jí)",
"high": "高溫 17℃",
"type": "小雨",
"low": "低溫 10℃",
"date": "30日星期四"
},
{
"fengxiang": "無(wú)持續(xù)風(fēng)向",
"fengli": "微風(fēng)級(jí)",
"high": "高溫 18℃",
"type": "多云",
"low": "低溫 7℃",
"date": "31日星期五"
},
{
"fengxiang": "無(wú)持續(xù)風(fēng)向",
"fengli": "微風(fēng)級(jí)",
"high": "高溫 20℃",
"type": "晴",
"low": "低溫 8℃",
"date": "1日星期六"
},
{
"fengxiang": "無(wú)持續(xù)風(fēng)向",
"fengli": "微風(fēng)級(jí)",
"high": "高溫 23℃",
"type": "晴",
"low": "低溫 10℃",
"date": "2日星期天"
},
{
"fengxiang": "無(wú)持續(xù)風(fēng)向",
"fengli": "微風(fēng)級(jí)",
"high": "高溫 23℃",
"type": "多云",
"low": "低溫 12℃",
"date": "3日星期一"
}
],
"yesterday": {
"fl": "微風(fēng)",
"fx": "無(wú)持續(xù)風(fēng)向",
"high": "高溫 21℃",
"type": "陰",
"low": "低溫 12℃",
"date": "29日星期三"
},
"aqi": "114",
"city": "武漢"
}
}
最終解析效果:

解析概述
1、首先,接到的整個(gè)數(shù)據(jù)可以轉(zhuǎn)化為JSONObject對(duì)象。
2、通過(guò)整個(gè)數(shù)據(jù)的JSONObject對(duì)象獲取到data中的數(shù)據(jù),也是一個(gè)JSONObject對(duì)象。在data中就可以獲取到此時(shí)溫度,以及城市等信息。
3、通過(guò)data的JSONObject對(duì)象可以獲取到forecast中的數(shù)據(jù),forecast中的數(shù)據(jù)則是一個(gè)JSONArray對(duì)象。
4、通過(guò)forecast的JSONArray對(duì)象可以獲取到近幾天的天氣信息,每一條為一個(gè)JSONObject對(duì)象。
代碼
方便起見(jiàn),筆者使用了volley框架,讀者新建項(xiàng)目需要在build.gradle的dependencies中添加如下:
compile 'eu.the4thfloor.volley:com.android.volley:2015.05.28'
MainActivity.java:
package com.example.double2.jsontext;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
import android.widget.TextView;
import com.android.volley.RequestQueue;
import com.android.volley.Response;
import com.android.volley.VolleyError;
import com.android.volley.toolbox.JsonObjectRequest;
import com.android.volley.toolbox.Volley;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
public class MainActivity extends AppCompatActivity {
private TextView tvMain;
private RequestQueue mRequestQueue;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
initView();
}
private void initView() {
tvMain = (TextView) findViewById(R.id.tv_main);
mRequestQueue = Volley.newRequestQueue(this);
JsonObjectRequest mJsonObjectRequest = new JsonObjectRequest(
"http://wthrcdn.etouch.cn/weather_mini?citykey=101200101",
null,
new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject response) {
try {
JSONObject data = new JSONObject(response.getString("data"));
JSONArray forecast = data.getJSONArray("forecast");
JSONObject todayWeather = forecast.getJSONObject(0);
String wendu = data.getString("wendu") + "\n";
String ganmao = data.getString("ganmao") + "\n";
String high = todayWeather.getString("high") + "\n";
String low = todayWeather.getString("low") + "\n";
String date = todayWeather.getString("date") + "\n";
String city = data.getString("city") + "\n";
tvMain.setText(wendu + ganmao + high + low + date+city);
} catch (JSONException e) {
e.printStackTrace();
}
}
}, new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
Log.e("TAG", error.getMessage(), error);
}
});
mRequestQueue.add(mJsonObjectRequest);
}
}
activity_main.xml:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:padding="10dp" > <TextView android:id="@+id/tv_main" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Hello World!" /> </LinearLayout>
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
- 如何通過(guò)Android Stduio來(lái)編寫一個(gè)完整的天氣預(yù)報(bào)APP
- Android Internet應(yīng)用實(shí)現(xiàn)獲取天氣預(yù)報(bào)的示例代碼
- Android編程實(shí)現(xiàn)類似天氣預(yù)報(bào)圖文字幕垂直滾動(dòng)效果的方法
- Android天氣預(yù)報(bào)app改進(jìn)版
- Android編程實(shí)現(xiàn)獲取新浪天氣預(yù)報(bào)數(shù)據(jù)的方法
- Android天氣預(yù)報(bào)之基于HttpGet對(duì)象解析天氣數(shù)據(jù)的方法
- android調(diào)用國(guó)家氣象局天氣預(yù)報(bào)接口json數(shù)據(jù)格式解釋
- Android簡(jiǎn)單實(shí)現(xiàn)天氣預(yù)報(bào)App
相關(guān)文章
Android仿微信圖片上傳帶加號(hào)且超過(guò)最大數(shù)隱藏功能
這篇文章給大家分享android仿照微信空間上傳圖片,顯示圖片數(shù)量以及超過(guò)最大,上傳按鈕隱藏功能,非常不錯(cuò),具有參考借鑒價(jià)值,需要的朋友參考下吧2018-03-03
Android Studio的安裝及第一次啟動(dòng)時(shí)的配置問(wèn)題
這篇文章主要介紹了Android Studio的安裝及第一次啟動(dòng)時(shí)的配置,需要的朋友可以參考下2019-09-09
Compose?動(dòng)畫藝術(shù)之屬性動(dòng)畫探索
這篇文章主要介紹了Compose動(dòng)畫藝術(shù)之屬性動(dòng)畫探索,文章圍繞主題展開詳細(xì)的內(nèi)容介紹,具有一定的參考價(jià)值,需要的小伙伴可以參考一下2022-09-09
android實(shí)現(xiàn)人臉識(shí)別技術(shù)的示例代碼
本篇文章主要介紹了android人臉識(shí)別技術(shù)的示例代碼,小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧2018-03-03
Android TextView 去掉自適應(yīng)默認(rèn)的fontpadding的實(shí)現(xiàn)方法
這篇文章主要介紹了Android TextView 去掉自適應(yīng)默認(rèn)的fontpadding的實(shí)現(xiàn)方法的相關(guān)資料,希望通過(guò)本文大家能夠掌握這部分內(nèi)容,需要的朋友可以參考下2017-09-09
Android同時(shí)安裝Release和Debug版本的方法
這篇文章主要介紹了Android同時(shí)安裝Release和Debug版本的方法,小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧2018-12-12
Android實(shí)現(xiàn)SwipeRefreshLayout首次進(jìn)入自動(dòng)刷新
這篇文章主要為大家詳細(xì)介紹了Android實(shí)現(xiàn)SwipeRefreshLayout首次進(jìn)入自動(dòng)刷新,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2017-01-01

