ImageVerifierCode 换一换
格式:DOCX , 页数:10 ,大小:334.14KB ,
资源ID:8386203      下载积分:3 金币
快捷下载
登录下载
邮箱/手机:
温馨提示:
快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。 如填写123,账号就是123,密码也是123。
特别说明:
请自助下载,系统不会自动发送文件的哦; 如果您已付费,想二次下载,请登录后访问:我的下载记录
支付方式: 支付宝    微信支付   
验证码:   换一换

加入VIP,免费下载
 

温馨提示:由于个人手机设置不同,如果发现不能下载,请复制以下地址【https://www.bdocx.com/down/8386203.html】到电脑端继续下载(重复下载不扣费)。

已注册用户请登录:
账号:
密码:
验证码:   换一换
  忘记密码?
三方登录: 微信登录   QQ登录  

下载须知

1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。
2: 试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。
3: 文件的所有权益归上传用户所有。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 本站仅提供交流平台,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

版权提示 | 免责声明

本文(Android利用Gson解析实现天气预报.docx)为本站会员(b****6)主动上传,冰豆网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知冰豆网(发送邮件至service@bdocx.com或直接QQ联系客服),我们立即给予删除!

Android利用Gson解析实现天气预报.docx

1、Android利用Gson解析实现天气预报用Android Studio新建一个默认工程后,将第一张图片红色标记文件修改到相应代码即可package com.example.rui.weatherforecast;import android.os.Handler;import android.os.Message;import android.support.v7.app.AppCompatActivity;import android.os.Bundle;import android.widget.EditText;import android.widget.Toast;import co

2、m.google.gson.Gson;import java.io.BufferedReader;import java.io.IOException;import java.io.InputStream;import java.io.InputStreamReader;import .HttpURLConnection;import .MalformedURLException;import .ProtocolException;import .URL;public class MainActivity extends AppCompatActivity EditText et_city,

3、et_weather, et_highTemp, et_lowTemp;Weatherinfo weatherinfo;Weatherinfo.Weather weather;Overrideprotected void onCreate(Bundle savedInstanceState) super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);init();/* * 初始化控件并开始事件 */public void init() /获取控件et_city = (EditText) findViewB

4、yId(R.id.city);et_weather = (EditText) findViewById(R.id.weather);et_highTemp = (EditText) findViewById(R.id.highTemp);et_lowTemp = (EditText) findViewById(R.id.lowTemp);/* * 新建线程进行查询天气 */new Thread() Overridepublic void run() String strurl = try getweathers(strurl); catch (MalformedURLException e)

5、e.printStackTrace(); .start();/* * 子线程响应处理 */Handler mHandler = new Handler() Overridepublic void handleMessage(Message msg) super.handleMessage(msg); if (msg.what = 1) Toast.makeText(MainActivity.this, 天气 + weatherinfo.getWeatherinfo().getCity() + weatherinfo.getWeatherinfo().getTemp1(), Toast.LENG

6、TH_SHORT).show();et_city.setText(weather.getCity();et_weather.setText(weather.getWeather();et_lowTemp.setText(weather.getTemp1();et_highTemp.setText(weather.getTemp2(); ;/* * 解析JSON数据转换并赋值到实体类中 * * param path* throws MalformedURLException */public void getweathers(String path) throws MalformedURLExc

7、eption String strjson = (String) getConnetion(path);Gson gson = new Gson();weatherinfo = gson.fromJson(strjson, Weatherinfo.class);weather = weatherinfo.getWeatherinfo();/完成后发送消息给Handler进行下一个事件Message msg = new Message();msg.what = 1;mHandler.sendMessage(msg);/* * 联网获取JSON数据 * * param path* return*

8、throws MalformedURLException */public String getConnetion(String path) throws MalformedURLException URL url = new URL(path); try HttpURLConnection connection = (HttpURLConnection) url.openConnection();connection.setConnectTimeout(5000);connection.setReadTimeout(5000);connection.setRequestMethod(GET)

9、;InputStreamReader inputStreamReader = new InputStreamReader(connection.getInputStream();BufferedReader bufferedReader = new BufferedReader(inputStreamReader);String line = bufferedReader.readLine().toString();bufferedReader.close();inputStreamReader.close(); return line; catch (ProtocolException e)

10、 e.printStackTrace(); catch (IOException e) e.printStackTrace();return null;package com.example.rui.weatherforecast;/* * Created by Rui on 2018/1/2. */public class Weatherinfo private Weather weatherinfo; public Weather getWeatherinfo() return weatherinfo;public void setWeatherinfo(Weather weatherin

11、fo) this.weatherinfo = weatherinfo;public class Weatherprivate String city; private String cityid; private String temp1; private String temp2; private String weather; private String img1; private String img2; private String ptime; public String getCity() return city;public void setCity(String city)

12、this.city = city;public String getCityid() return cityid;public void setCityid(String cityid) this.cityid = cityid;public String getTemp1() return temp1;public void setTemp1(String temp1) this.temp1 = temp1;public String getTemp2() return temp2;public void setTemp2(String temp2) this.temp2 = temp2;p

13、ublic String getWeather() return weather;public void setWeather(String weather) this.weather = weather;public String getImg1() return img1;public void setImg1(String img1) this.img1 = img1;public String getImg2() return img2;public void setImg2(String img2) this.img2 = img2;public String getPtime() return ptime;public void setPtime(String ptime) this.ptime = ptime; -compile com.google.code.gson:gson:2.8.2

copyright@ 2008-2022 冰豆网网站版权所有

经营许可证编号:鄂ICP备2022015515号-1