安卓json的解析

本文由PurpleSword(jzj1993)原创,转载请注明
原文网址 http://blog.csdn.net/jzj1993

方法一(使用安卓包含的JSON解析类)

import org.json.JSONArray;
import org.json.JSONObject;
import org.json.JSONTokener;

    try {
        JSONTokener tokener = new JSONTokener(json);
        JSONObject joResult = new JSONObject(tokener);
        JSONArray words = joResult.getJSONArray("ws");
        for (int i = 0; i < words.length(); i++) {
            JSONArray items = words.getJSONObject(i).getJSONArray("cw");
            JSONObject obj = items.getJSONObject(0);
            chComTmp = outerparseCom(obj.getString("w"));
        }
    } catch (Exception e) {
        e.printStackTrace();
    }


方法二(使用谷歌开源项目Gson,需要gson.jar程序库的支持)

按照json的嵌套格式定义类,其中各种变量名称和json变量名相同(int,String等类型皆可支持),数组则使用List格式,然后用new Gson().fromJson(json, WeatherResult.class)进行解析(注意用try…catch捕获异常)。

添加gson.jar程序库到Java或安卓工程的方法:jar文件放到项目下的libs文件夹中,右击jar文件,菜单中选择BuildPath-->Add to BuildPath即可。

import com.google.gson.Gson;
import com.google.gson.JsonSyntaxException;

public class WeatherResult {
    private String error// 0
    private String status// "success"
    private String date// "2014-03-26"
    private List<Results> results;
    private WeatherResult() {
    }
    public static WeatherResult fromJson(String json) {
        try {
            return new Gson().fromJson(json, WeatherResult.class);
        } catch (JsonSyntaxException e) {
            return null;
        }
    }
    public class Results {
        protected String currentCity// "北京"
        protected List<WeatherData> weather_data;
        public class WeatherData {
            protected String date// "周三(今天, 实时:23℃)" / "周四"
            protected String weather// "霾" / "多云转阵雨" / "阴转多云"
            protected String wind// "微风"
            protected String temperature// "22 ~ 10℃"
        }
    }
}







本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/242152.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

安卓线程相关 HandlerThread Handler Thread Looper Message Runnable

本文由PurpleSword(jzj1993)原创&#xff0c;转载请注明原文网址 http://blog.csdn.net/jzj1993安卓主线程&#xff08;UI线程&#xff09;是线程不安全的&#xff1a;对UI控件的操作都应在主线程中完成&#xff1b;UI线程不应执行耗时操作&#xff0c;以免程序不响应&#xff…

用户细分_基于购买历史的用户细分

用户细分介绍 (Introduction) The goal of this analysis was to identify different user groups based on the deals they have availed, using a discount app, in order to re-target them with offers similar to ones they have availed in the past.该分析的目的是使用折…

一个字节的网络漫游故事独白

大家好&#xff0c;给大家介绍一下&#xff0c;我是一个字节。相比于你们人类据说即将达到的百岁人生的寿命&#xff0c;我的一生简直不直一提&#xff08;我只能存活零点几个毫秒&#xff09;。也许只有那些码农才会了解我&#xff0c;而且也只有一部分码农。那些整天做业务的…

swap最大值和平均值_SWAP:Softmax加权平均池

swap最大值和平均值Blake Elias is a Researcher at the New England Complex Systems Institute.Shawn Jain is an AI Resident at Microsoft Research.布莱克埃里亚斯 ( Blake Elias) 是 新英格兰复杂系统研究所的研究员。 Shawn Jain 是 Microsoft Research 的 AI驻地 。 …

Activity和Service通信 使用BroadcastReceiver

本文由PurpleSword(jzj1993)原创&#xff0c;转载请注明原文网址 http://blog.csdn.net/jzj1993Activity中编写/*** 广播接收器*/public class MsgReceiver extends BroadcastReceiver {Overridepublic void onReceive(Context context, Intent intent) {Log.v("", &…

该酷的酷该飒的飒,穿出自己的潮流前线

精选匈牙利白鸭绒填充&#xff0c;柔软蓬松 舒适感很强&#xff0c;回弹性好 没有什么异味很干净安全 宝贝穿上去保暖又舒适 树脂拉链&#xff0b;金属按扣&#xff0c;松紧帽檐&#xff0b;袖口 下摆还做了可调节抽绳&#xff0c;细节满满防风保暖很nice 短款设计相较于…

pytorch卷积可视化_使用Pytorch可视化卷积神经网络

pytorch卷积可视化Filter and Feature map Image by the author筛选和特征图作者提供的图像 When dealing with image’s and image data, CNN are the go-to architectures. Convolutional neural networks have proved to provide many state-of-the-art solutions in deep l…

Golang之轻松化解defer的温柔陷阱

defer是Go语言提供的一种用于注册延迟调用的机制&#xff1a;让函数或语句可以在当前函数执行完毕后&#xff08;包括通过return正常结束或者panic导致的异常结束&#xff09;执行。深受Go开发者的欢迎&#xff0c;但一不小心就会掉进它的温柔陷阱&#xff0c;只有深入理解它的…

安卓Selector

本文由PurpleSword(jzj1993)原创&#xff0c;转载请注明原文网址 http://blog.csdn.net/jzj1993安卓的按钮复选框等&#xff0c;在点击、选中等不同状态时&#xff0c;显示的图片不同。通常可以使用Selector进行定义&#xff08;如res/drawable/button_selector.xml&#xff09…

u-net语义分割_使用U-Net的语义分割

u-net语义分割Picture By Martei Macru On Unsplash图片由Martei Macru On Unsplash拍摄 Semantic segmentation is a computer vision problem where we try to assign a class to each pixel . Unlike the classic image classification task where only one class value is …

我国身家超过亿元的有多少人?

目前我国身家达到亿元以上的人数&#xff0c;从公开数据来看大概有13万人&#xff0c;但如果把那些统计不到的隐形亿万富翁计算在内&#xff0c;我认为至少有20万以上。公开资料显示目前我国亿万富翁人数达到133000人根据胡润2018财富报告显示&#xff0c;目前我国&#xff08;…

地理空间数据

摘要 (Summary) In this article, using Data Science and Python, I will show how different Clustering algorithms can be applied to Geospatial data in order to solve a Retail Rationalization business case.在本文中&#xff0c;我将使用数据科学和Python演示如何将…

安卓PopupWindow

本文由PurpleSword(jzj1993)原创&#xff0c;转载请注明原文网址 http://blog.csdn.net/jzj1993定义弹窗动画res/anim/scale_in.xml<?xml version"1.0" encoding"utf-8"?><set xmlns:android"http://schemas.android.com/apk/res/android&…

嵌入式系统分类及其应用场景_词嵌入及其应用简介

嵌入式系统分类及其应用场景Before I give you an introduction on Word Embeddings, take a look at the following examples and ask yourself what is common between them:在向您介绍Word Embeddings之前&#xff0c;请看一下以下示例并问问自己它们之间的共同点是什么&…

山东男子5个月刷信用卡1800次,被银行处理后他选择29次取款100元

虽然我国实行的是存款自愿&#xff0c;取款自由的储蓄政策&#xff0c;客户想怎么取款&#xff0c;在什么时候取&#xff0c;取多少钱&#xff0c;完全是客户的权利&#xff0c;只要客户的账户上有钱&#xff0c;哪怕他每次取一毛钱取个100次都是客户的权利。但是明明可以一次性…

安卓传感器 Sensor

本文由PurpleSword(jzj1993)原创&#xff0c;转载请注明原文网址 http://blog.csdn.net/jzj19931、获取系统服务private SensorManager sensorManager;sensorManager (SensorManager) getSystemService(SENSOR_SERVICE);2、检测是否有传感器private boolean checkSensor() {if …

深发银行为什么要更名为平安银行?

深圳发展银行之所以更名为平安银行&#xff0c;最直接的原因是平安银行收购了深圳发展银行&#xff0c;然后又以平安集团作为主体&#xff0c;以深圳发展银行的名义收购了平安银行&#xff0c;最后两个人合并之后统一命名为平安银行。深圳发展银行更名为平安银行&#xff0c;大…

高斯过程分类和高斯过程回归_高斯过程回归建模入门

高斯过程分类和高斯过程回归Gaussian processing (GP) is quite a useful technique that enables a non-parametric Bayesian approach to modeling. It has wide applicability in areas such as regression, classification, optimization, etc. The goal of this article i…

假如购买的期房不小心烂尾了,那银行贷款是否可以不还了?

如今房价一路高升&#xff0c;再加上开发商融资难度越来越大&#xff0c;现在很多人都开始打期房的主意。期房不论是对开发商还是对购房者来说都是双赢的&#xff0c;开发商可以以较低的融资成本维持楼盘的开发&#xff0c;提高财务杠杆&#xff0c;而购房者可以较低的价格买房…