Java学习者论坛

 找回密码
 立即注册

QQ登录

只需一步,快速开始

手机号码,快捷登录

恭喜Java学习者论坛(https://www.javaxxz.com)已经为数万Java学习者服务超过8年了!积累会员资料超过10000G+
成为本站VIP会员,下载本站10000G+会员资源,购买链接:点击进入购买VIP会员
JAVA高级面试进阶视频教程Java架构师系统进阶VIP课程

分布式高可用全栈开发微服务教程

Go语言视频零基础入门到精通

Java架构师3期(课件+源码)

Java开发全终端实战租房项目视频教程

SpringBoot2.X入门到高级使用教程

大数据培训第六期全套视频教程

深度学习(CNN RNN GAN)算法原理

Java亿级流量电商系统视频教程

互联网架构师视频教程

年薪50万Spark2.0从入门到精通

年薪50万!人工智能学习路线教程

年薪50万!大数据从入门到精通学习路线年薪50万!机器学习入门到精通视频教程
仿小米商城类app和小程序视频教程深度学习数据分析基础到实战最新黑马javaEE2.1就业课程从 0到JVM实战高手教程 MySQL入门到精通教程
查看: 465|回复: 0

开发交流:在Java中解析与构造JSON

[复制链接]

该用户从未签到

发表于 2011-10-24 10:39:29 | 显示全部楼层 |阅读模式
java中解析与构造JSON


www.json.org上公布了很多Java下的json解析工具,其中org.json和json-lib比较简单,两者使用上差不多。下面两段源代码是分别使用这两个工具解析和构造JSON的演示程序。
http://nchc.dl.sourceforge.net/sourceforge/json-lib/json-lib-2.2.1-jdk15.jar

(Needs libs below:)
.    jakarta commons-lang 2.3
.    jakarta commons-beanutils 1.7.0
.    jakarta commons-collections 3.2
.    jakarta commons-logging 1.1
.    ezmorph 1.0.4



这是使用json-lib的程序:
import java.util.HashMap;

import java.util.Map;

import net.sf.json.JSONObject;

public class Test {

public static void main(String[] args) {

String json = "{/"name/":/"reiz/"}";

JSONObject jsonObj = JSONObject.fromObject(json);

String name = jsonObj.getString("name");

jsonObj.put("initial", name.substring(0, 1).toUpperCase());

String[] likes = new String[] { "JavaScript", "Skiing", "Apple Pie" };

jsonObj.put("likes", likes);

Map <String, String> ingredients = new HashMap <String, String>();

ingredients.put("apples", "3kg");

ingredients.put("sugar", "1kg");

ingredients.put("pastry", "2.4kg");

ingredients.put("bestEaten", "outdoors");

jsonObj.put("ingredients",ingredients);

System.out.println(jsonObj);

}

}
复制代码

http://www.json.org/java/json.zip



这是使用org.json的程序:

import java.util.HashMap;

import java.util.Map;

import org.json.JSONException;

import org.json.JSONObject;

public class Test {

public static void main(String[] args) throws JSONException {

String json = "{/"name/":/"reiz/"}";

JSONObject jsonObj = new JSONObject(json);

String name = jsonObj.getString("name");

jsonObj.put("initial", name.substring(0, 1).toUpperCase());

String[] likes = new String[] { "JavaScript", "Skiing", "Apple Pie" };

jsonObj.put("likes", likes);

Map <String, String> ingredients = new HashMap <String, String>();

ingredients.put("apples", "3kg");

ingredients.put("sugar", "1kg");

ingredients.put("pastry", "2.4kg");

ingredients.put("bestEaten", "outdoors");

jsonObj.put("ingredients", ingredients);

System.out.println(jsonObj);

System.out.println(jsonObj);

}

}
复制代码



两者的使用几乎是相同的,但org.json比json-lib要轻量得多,前者没有任何依赖,而后者要依赖ezmorph和commons的lang、logging、beanutils、collections等组件。



=======================================================================
使用Java操作JSON字符串对象


1.  如果我们需要实现一个配置管理的功能,那么为每个配置项目增加一个字段既复杂也不利于扩展,所以我们通常使用一个字符串来保存配置项目信息,这里介绍如何使用json的字符串解析来达到刚才说的目的。引入Json需要的类库:


import org.json.JSONException;

import org.json.JSONObject;

import org.json.JSONException;

import org.json.JSONObject;  
复制代码

2.     生成一个json对象(可以添加不同类型的数据):



JSONObject jsonObject = new JSONObject();

jsonObject.put("a", 1);

jsonObject.put("b", 1.1);

jsonObject.put("c", 1L);

jsonObject.put("d", "test");

jsonObject.put("e", true);

System.out.println(jsonObject);

//{"d":"test","e":true,"b":1.1,"c":1,"a":1}

JSONObject jsonObject = new JSONObject();

jsonObject.put("a", 1);

jsonObject.put("b", 1.1);

jsonObject.put("c", 1L);

jsonObject.put("d", "test");

jsonObject.put("e", true);

System.out.println(jsonObject);

//{"d":"test","e":true,"b":1.1,"c":1,"a":1}
复制代码

3.     解析一个json对象(可以解析不同类型的数据):

jsonObject = getJSONObject("{d:test,e:true,b:1.1,c:1,a:1}");

System.out.println(jsonObject);

//{"d":"test","e":true,"b":1.1,"c":1,"a":1}

System.out.println(jsonObject.getInt("a"));

System.out.println(jsonObject.getDouble("b"));

System.out.println(jsonObject.getLong("c"));

System.out.println(jsonObject.getString("d"));

System.out.println(jsonObject.getBoolean("e"));

jsonObject = getJSONObject("{d:test,e:true,b:1.1,c:1,a:1}");

System.out.println(jsonObject);

//{"d":"test","e":true,"b":1.1,"c":1,"a":1}

System.out.println(jsonObject.getInt("a"));

System.out.println(jsonObject.getDouble("b"));

System.out.println(jsonObject.getLong("c"));

System.out.println(jsonObject.getString("d"));

System.out.println(jsonObject.getBoolean("e"));

getJSONObject(String str)

public static JSONObject getJSONObject(String str) {

if (str == null || str.trim().length() == 0)

return null;

JSONObject jsonObject = null;

try {

jsonObject = new JSONObject(str);

} catch (JSONException e) {

e.printStackTrace(System.err);

}

return jsonObject;

}

public static JSONObject getJSONObject(String str) {

if (str == null || str.trim().length() == 0)

return null;

JSONObject jsonObject = null;

try {

jsonObject = new JSONObject(str);

} catch (JSONException e) {

e.printStackTrace(System.err);

}

return jsonObject;

}
复制代码

这样我们不仅可以处理多种数据类型,还可以随时添加配置相,这种方式相当灵活。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|手机版|Java学习者论坛 ( 声明:本站资料整理自互联网,用于Java学习者交流学习使用,对资料版权不负任何法律责任,若有侵权请及时联系客服屏蔽删除 )

GMT+8, 2025-1-11 06:16 , Processed in 0.388202 second(s), 46 queries .

Powered by Discuz! X3.4

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表