json字符串java_Java中string字符串转json对象⽅法Java中string字符串转json对象⽅法
Java利⽤JSONObject进⾏string字符串转换成JSON对象
转换实例⼀
public class StringToJSON {
public static void main(String[] args) throws JSONException{
System.out.println("abc");
//定义JSON字符串
String jsonStr = "{\"id\": 2," +
" \"title\": \"json title\", " +
"\"config\": {" +
"\"width\": 34," +
"\"height\": 35," +
"}, \"data\": [" +
"\"JAVA\", \"JavaScript\", \"PHP\"" +
"]}";
//转换成为JSONObject对象
JSONObject jsonObj = new JSONObject(jsonStr);
//从JSONObject对象中获取数据
JavaBean bean = new JavaBean();
//根据属性名称获取int型数据;
bean.Int("id"));
//根据属性名获取String数据;
bean.String("title"));
//根据属性名获取JSONObject类
JSONObject config = JSONObject("config");
bean.Int("width"));
bean.Int("height"));
//根据属性名获取JSONArray数组
JSONArray data = JSONArray("data");
for(int index = 0, length = data.length(); index < length; index++) {
}
}
}
转换实例⼆
public class User {
String id;
String name;
json转换对象
int age;
}
public class Json{
public static void main(String[] args) {
//String 转json
String text ="{'id':'001','name':'jack','age':22}";
JSONObject jo =JSONObject.fromObject(text);
System.out.("id") +"__"+ jo.get("name") +"___" +  jo.getInt("age"));
//String 转对象  等于是先转成json然后转对象
String text2="{'id':'002','name':'lion','age':23}";
User u1 = (Bean(JSONObject.fromObject(text2), User.class); System.out.Id()+"___"+u1.getName()+"__"+u1.getAge());
//对象转json
User  u =new User();
u.setId("003");
u.setAge(25);
u.setName("Tom");
JSONObject jo2 =JSONObject.fromObject(u);
System.out.println(jo2);
System.out.("name"));
}
}
执⾏结果:
001__jack___22
002___lion__23
{"age":25,"id":"003","name":"Tom"}
Tom
版权声明:本⽂为JAVASCHOOL原创⽂章,未经本站允许不得转载。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。