Java中利用gson解析Json实例教程

作者:jihite 时间:2023-10-31 04:07:41 

前言

本文主要跟大家介绍了关于Java用gson解析Json的相关内容,分享出来供大家参考学习,需要的朋友们下面来一起看看吧。

json数据


{

"resultcode": "200",

"reason": "successed!",

"result": {

"sk": {

"temp": "24",

"wind_direction": "西南风",

"wind_strength": "2级",

"humidity": "51%",

"time": "10:11"

},

"today": {

"temperature": "16℃~27℃",

"weather": "阴转多云",

"weather_id": {

"fa": "02",

"fb": "01"

},

"wind": "西南风3-4 级",

"week": "星期四",

"city": "滨州",

"date_y": "2015年06月04日",

"dressing_index": "舒适",

"dressing_advice": "建议着长袖T恤、衬衫加单裤等服装。年老体弱者宜着针织长袖衬衫、马甲和长裤。",

"uv_index": "最弱",

"comfort_index": "",

"wash_index": "较适宜",

"travel_index": "",

"exercise_index": "较适宜",

"drying_index": ""

},

"future": [

{

"temperature": "16℃~27℃",

"weather": "阴转多云",

"weather_id": {

"fa": "02",

"fb": "01"

},

"wind": "西南风3-4 级",

"week": "星期四",

"date": "20150604"

},

{

"temperature": "20℃~32℃",

"weather": "多云转晴",

"weather_id": {

"fa": "01",

"fb": "00"

},

"wind": "西风3-4 级",

"week": "星期五",

"date": "20150605"

},

{

"temperature": "23℃~35℃",

"weather": "多云转阴",

"weather_id": {

"fa": "01",

"fb": "02"

},

"wind": "西南风3-4 级",

"week": "星期六",

"date": "20150606"

},

{

"temperature": "20℃~33℃",

"weather": "多云",

"weather_id": {

"fa": "01",

"fb": "01"

},

"wind": "北风微风",

"week": "星期日",

"date": "20150607"

},

{

"temperature": "22℃~34℃",

"weather": "多云",

"weather_id": {

"fa": "01",

"fb": "01"

},

"wind": "西南风3-4 级",

"week": "星期一",

"date": "20150608"

},

{

"temperature": "22℃~33℃",

"weather": "阴",

"weather_id": {

"fa": "02",

"fb": "02"

},

"wind": "西南风3-4 级",

"week": "星期二",

"date": "20150609"

},

{

"temperature": "22℃~33℃",

"weather": "多云",

"weather_id": {

"fa": "01",

"fb": "01"

},

"wind": "南风3-4 级",

"week": "星期三",

"date": "20150610"

}

]

},

"error_code": 0

}

解析JSONObject


import com.google.gson.JsonObject;
import com.google.gson.JsonParser;
import com.google.gson.JsonSyntaxException;
import com.google.gson.JsonIOException;

import java.io.FileNotFoundException;
import java.io.FileReader;

public class ReadJson {
public static void main(String []args) {
 JsonParser parse = new JsonParser();
 try {
  JsonObject json = (JsonObject) parse.parse(new FileReader("weather.json"));
  System.out.println("resultcode:" + json.get("resultcodeu").getAsInt());
  System.out.println("reason:" + json.get("reason").getAsString());
  JsonObject result = json.get("result").getAsJsonObject();
  JsonObject today = result.get("today").getAsJsonObject();
  System.out.println("weak:" + today.get("week").getAsString());
  System.out.println("weather:" + today.get("weather").getAsString());
 } catch (JsonIOException e) {
  e.printStackTrace();
 } catch (NullPointerException e) {
  e.printStackTrace();
 } catch (JsonSyntaxException e){
  e.printStackTrace();
 } catch (FileNotFoundException e) {
  e.printStackTrace();
 }
}
}

解析JSONArray


import com.google.gson.JsonParser;
import com.google.gson.JsonArray;
import com.google.gson.JsonObject;
import com.google.gson.JsonSyntaxException;
import com.google.gson.JsonIOException;

import java.io.FileNotFoundException;
import java.io.FileReader;

public class ReadJsonArray {
public static void main(String []args) {
 JsonParser parse = new JsonParser();
 try {
  JsonObject json = (JsonObject)parse.parse(new FileReader("C:\\Users\\wzh94434\\IdeaProjects\\TestProject\\jsontest\\src\\main\\java\\weather.json"));
  JsonObject result = json.get("result").getAsJsonObject();
  JsonArray futureArray = result.get("future").getAsJsonArray();
  for (int i = 0; i < futureArray.size(); ++i) {
   JsonObject subObj = futureArray.get(i).getAsJsonObject();
   System.out.println("------");
   System.out.println("week:" + subObj.get("week").getAsString());
   System.out.println("weather:" + subObj.get("weather").getAsString());
  }
 } catch (FileNotFoundException e) {
  e.printStackTrace();
 } catch (JsonIOException e) {
  e.printStackTrace();
 } catch (JsonSyntaxException e) {
  e.printStackTrace();
 }
}
}

注意:文件路径相对路径是从工程根目录开始

Java中利用gson解析Json实例教程

来源:http://www.cnblogs.com/kaituorensheng/p/6616126.html

标签:java,gson,解析json
0
投稿

猜你喜欢

  • C# 对象持久化详解

    2023-06-24 10:21:47
  • 关于Spring Cloud 本地属性覆盖的问题

    2021-09-17 09:26:42
  • java8从list集合中取出某一属性的值的集合案例

    2023-04-30 01:51:49
  • 如何搭建新的WPF项目框架

    2023-09-28 08:18:05
  • 使用Java构造和解析Json数据的两种方法(详解一)

    2023-01-26 01:51:18
  • Android获取短信验证码的实现方法

    2023-10-12 03:27:34
  • Android Jni的简单使用详解

    2023-10-20 14:37:43
  • netty pipeline中的inbound和outbound事件传播分析

    2023-08-27 06:57:00
  • Android判断Activity是否在最上层的方法

    2023-05-09 05:31:01
  • java io读取文件操作代码实例

    2023-04-12 08:53:57
  • Java使用wait和notify实现线程之间的通信

    2022-07-20 16:05:02
  • android仿微信聊天界面 语音录制功能

    2022-09-21 17:55:08
  • C#无损压缩图片

    2022-05-26 22:54:39
  • MybatisPlus,无XML分分钟实现CRUD操作

    2022-06-26 18:18:46
  • Android 中Volley二次封装并实现网络请求缓存

    2023-09-17 06:16:35
  • 图形学之Unity渲染管线流程分析

    2023-09-25 05:27:36
  • Android Studio下Flutter环境搭建图文教程

    2023-11-06 00:08:03
  • Android简单音乐播放实例

    2023-04-13 05:49:55
  • springmvc用于方法鉴权的注解拦截器的解决方案代码

    2022-06-02 10:30:18
  • Android 安全加密:非对称加密详解

    2021-08-03 18:39:43
  • asp之家 软件编程 m.aspxhome.com