使用Java操作JSON字符串对象

社会主义新天地 提交于 2020-02-26 16:25:37

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

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}  

 


3、解析一个json对象(可以解析不同类型的数据),getJSONObject(String str):

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"));


4、

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;
    }

 

包下载地址:http://www.json.org/java/index.html

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!