基于json-lib.jar包 创建JSONObject的四个常用方法
基于json-lib.jar包Json实例程序
1.从头或者从零开始,创建一个JSONObject(Creating a JSONObject from scratch)
实例1:
JSONObject jsonObject = new JSONObject();
jsonObject.element("name", "周星星");
jsonObject.element("sex", "male");
jsonObject.element("age", 18);
jsonObject.element("job", "student");
System.out.("name"));// 周星星
System.out.("job"));// student
System.out.String("sex"));// male
System.out.Int("age"));// 18
实例2:
JSONObject jsonObject = new JSONObject().element("string", "JSON").element("integer", "1").element("double", "2.0").element("boolean", "true");
assertEquals("JSON", String("string"));
assertEquals(1, Int("integer"));
assertEquals(2.0d, Double("double"), 0d);
Boolean("boolean"));
注:这是对实例1的一个简化版
2.使用一个JSON格式化字符串来创建一个JSONObject(Creating a JSONObject from a JSON formatted string) 
实例1:
String json = "{name:\"周星星\",sex:\"male\",age:18,job:\"student\"}";
JSONObject jsonObject = JSONObject.fromObject(json);
//或者使用 JSONObject jsonObject = (JSONObject) JSON(json);
System.out.("name"));// 周星星
System.out.("job"));// student
System.out.String("sex"));// male
System.out.Int("age"));// 18
实例2:
String str = "{'string':'JSON', 'integer': 1, 'double': 2.0, 'boolean': true}";
JSONObject jsonObject = (JSONObject) JSON(str);
assertEquals("JSON", String("string"));
assertEquals(1, Int("integer"));
assertEquals(2.0d, Double("double"), 0d);
Boolean("boolean"));
3.使用一个Map来创建一个JSONObject(Creating a JSONObject from a Map)
实例1:
Map map = new HashMap(); 
map.put( "string", "JSON" ); 
map.put( "integer", "1" ); 
map.put( "double", "2.0" ); 
map.put( "boolean", "true" ); 
JSONObject jsonObject = (JSONObject) JSON( map ); 
assertEquals( "JSON", String("string") );       
assertEquals( 1, Int("integer") );       
assertEquals( 2.0d, Double("double"), 0d );       
assertTrue( Boolean("boolean") );
4.使用一个JavaBean来创建一个JSONObject(Creating a JSONObject from a JavaBean)
实例1:
public class Mybean {
private String string;
private int integer;
private double dooble;
private boolean bool;
// getters & setters
}
object toMybean bean = new Mybean();
bean.setString("JSON");
bean.setInteger(1);
bean.setDooble(2.0d);
bean.s
etBool(true);
JSONObject jsonObject = (JSONObject) JSON(bean);
assertEquals("JSON", String("string"));
assertEquals(1, Int("integer"));
assertEquals(2.0d, Double("dooble"), 0d);
Boolean("bool"));
由此可见,无论要转换的源是哪种类型,都可以使用(JSONObject) JSON()或JSONObject.fromObject()来转换;

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