Java中解析json字符串
json
适用于现代 C++ 的 JSON。
项目地址:https://gitcode.com/gh_mirrors/js/json
免费下载资源
·
实际了json的包分好多种,各种导入的jar包不同,它里面包含的函数方法不同;
下面我当前用习惯的就是json-lib-2.4.jar这个jar包,并且引入的函数包是net.sf.json.JSONObject;而不是org.json.JSONObject;
1.获取简单的json字符串中key对应的值
前提是要导入一个json-lib-2.4.jar包
导入这jar包后,类中引用import net.sf.json.JSONObject;这个包时的情况
代码如下:
import net.sf.json.JSONObject;
public class Test {
public static void main(String[] args) {
String jsonStr="{\"trans\":\"01\",\"fileId\":\"中心编号\",\"context\":\"文件流的base64字符串\"}";
JSONObject json = JSONObject.fromObject(jsonStr);
String trans=json.getString("trans");
String fileId=json.getString("fileId");
String context=json.getString("context");
System.out.println("["+trans+"]["+fileId+"]["+context+"]");
}
}
效果图:
2.将 JavaBean和Map 解析成 JSON 串, 使用JSONObject 解析:
实体类:
package com.yinxin.server;
public class Person {
private String id;
private int age;
private String name;
public Person() {
super();
// TODO Auto-generated constructor stub
}
public Person(String id, String name) {
this.id = id;
this.name = name;
}
public Person(int age, String name) {
this.age = age;
this.name = name;
}
public Person(String id, int age, String name) {
this.id = id;
this.age = age;
this.name = name;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
测试类
package com.yinxin.server;
import java.util.HashMap;
import java.util.Map;
import net.sf.json.JSONObject;
public class Test {
public static void main(String[] args) {
/**
* 解析 HashMap
*/
Map<String, Object> map = new HashMap<String, Object>();
map.put("name", "Tom"); //给name赋值
map.put("age", 33); //给age赋值
//把map转成json格式
JSONObject jsonObject = JSONObject.fromObject(map);
System.out.println(jsonObject);
/**
* 解析 JavaBean
*/
//将实体类对象转换成json
Person person = new Person("A001", "Jack");
jsonObject = jsonObject.fromObject(person);
System.out.println(jsonObject);
/**
* 解析嵌套的对象
*/
//将对象放进map集合,再将map集合放进json中
map.put("person", person);
jsonObject = jsonObject.fromObject(map);
System.out.println(jsonObject);
}
}
测试结果:
3.将json串转换成数组Array
package com.yinxin.server;
import java.util.Arrays;
import net.sf.json.JSONArray;
public class Test {
public static void main(String[] args) {
int[] num=new int[]{89,90,99};
JSONArray jsonArray = JSONArray.fromObject(num);
Object array = JSONArray.toArray(jsonArray);
System.out.println(array);
System.out.println(Arrays.asList((Object[]) array));
}
}
测试结果:
4.将 Json 串转成 JavaBean/Map
package com.yinxin.server;
import java.util.Map;
import net.sf.json.JSONObject;
public class Test {
public static void main(String[] args) {
/**
* 将 Json 形式的字符串转换为 Map
*/
String str = "{\"name\":\"cy\",\"age\":22}";
JSONObject jsonObject = JSONObject.fromObject(str);
Map<String, Object> map = (Map<String, Object>) JSONObject.toBean(jsonObject, Map.class);
System.out.println(map);
/**
* 将 Json 形式的字符串转换为 JavaBean
*/
str = "{\"id\":\"100101\",\"name\":\"zhangsan\"}";
jsonObject = JSONObject.fromObject(str);
System.out.println(jsonObject);
Person person = (Person) JSONObject.toBean(jsonObject, Person.class);
System.out.println(person);
}
}
测试结果:
GitHub 加速计划 / js / json
18
5
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:2 个月前 )
960b763e
5 个月前
8c391e04
8 个月前
更多推荐
已为社区贡献4条内容
所有评论(0)