真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

androidJSON解析數(shù)據(jù)實現(xiàn)天氣預報的方法

不懂a(chǎn)ndroid JSON解析數(shù)據(jù)實現(xiàn)天氣預報的方法?其實想解決這個問題也不難,下面讓小編帶著大家一起學習怎么去解決,希望大家閱讀完這篇文章后大所收獲。

讓客戶滿意是我們工作的目標,不斷超越客戶的期望值來自于我們對這個行業(yè)的熱愛。我們立志把好的技術(shù)通過有效、簡單的方式提供給客戶,將通過不懈努力成為客戶在信息化領(lǐng)域值得信任、有價值的長期合作伙伴,公司提供的服務(wù)項目有:申請域名、雅安服務(wù)器托管、營銷軟件、網(wǎng)站建設(shè)、海林網(wǎng)站維護、網(wǎng)站推廣。

JSON數(shù)據(jù)如下:

{
 "desc": "OK",
 "status": 1000,
 "data": {
 "wendu": "14",
 "ganmao": "天氣轉(zhuǎn)涼,空氣濕度較大,較易發(fā)生感冒,體質(zhì)較弱的朋友請注意適當防護。",
 "forecast": [
 {
 "fengxiang": "無持續(xù)風向",
 "fengli": "微風級",
 "high": "高溫 17℃",
 "type": "小雨",
 "low": "低溫 10℃",
 "date": "30日星期四"
 },
 {
 "fengxiang": "無持續(xù)風向",
 "fengli": "微風級",
 "high": "高溫 18℃",
 "type": "多云",
 "low": "低溫 7℃",
 "date": "31日星期五"
 },
 {
 "fengxiang": "無持續(xù)風向",
 "fengli": "微風級",
 "high": "高溫 20℃",
 "type": "晴",
 "low": "低溫 8℃",
 "date": "1日星期六"
 },
 {
 "fengxiang": "無持續(xù)風向",
 "fengli": "微風級",
 "high": "高溫 23℃",
 "type": "晴",
 "low": "低溫 10℃",
 "date": "2日星期天"
 },
 {
 "fengxiang": "無持續(xù)風向",
 "fengli": "微風級",
 "high": "高溫 23℃",
 "type": "多云",
 "low": "低溫 12℃",
 "date": "3日星期一"
 }
 ],
 "yesterday": {
 "fl": "微風",
 "fx": "無持續(xù)風向",
 "high": "高溫 21℃",
 "type": "陰",
 "low": "低溫 12℃",
 "date": "29日星期三"
 },
 "aqi": "114",
 "city": "武漢"
 }
}

最終解析效果:

android JSON解析數(shù)據(jù)實現(xiàn)天氣預報的方法

解析概述

1、首先,接到的整個數(shù)據(jù)可以轉(zhuǎn)化為JSONObject對象。
2、通過整個數(shù)據(jù)的JSONObject對象獲取到data中的數(shù)據(jù),也是一個JSONObject對象。在data中就可以獲取到此時溫度,以及城市等信息。
3、通過data的JSONObject對象可以獲取到forecast中的數(shù)據(jù),forecast中的數(shù)據(jù)則是一個JSONArray對象。
4、通過forecast的JSONArray對象可以獲取到近幾天的天氣信息,每一條為一個JSONObject對象。

代碼

方便起見,筆者使用了volley框架,讀者新建項目需要在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() {
  @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"?>


 

感謝你能夠認真閱讀完這篇文章,希望小編分享android JSON解析數(shù)據(jù)實現(xiàn)天氣預報的方法內(nèi)容對大家有幫助,同時也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,遇到問題就找創(chuàng)新互聯(lián),詳細的解決方法等著你來學習!


分享題目:androidJSON解析數(shù)據(jù)實現(xiàn)天氣預報的方法
本文路徑:http://weahome.cn/article/gpjgep.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部