java, java中的jsonobject是什么,如何使用?不知道小伙伴们今天来看看边肖的分享吧!
1、JSONObject简介:
The JSON object library package is a package of beans, collections, maps, java arrays, extensible markup language and JSON.
2.项目环境:
系统:Win7MyEclipse: 6.5 Tomcat: 5.0 JDK:开发环境和编译都是1.5。
项目结构如下:
JSON object:JSON object is a collection of name/value pairs. Is the last class that inherits the object.
实现了JSON接口。
施工方法如下:
JSON object();创建一个空JSONObject对象。
JSON对象(布尔值为空);创建一个是否为空的JSONObject对象
一般方法如下:
from bean(object bean);静态方法,通过pojo对象创建JSONObject对象。
fromJSONObject(JSONObjectobject);静态方法,通过另一个JSONObject对象构造一个JSONObject对象。
fromJSONString(JSONStringstring);静态方法,通过一个JSONString创建一个JSONObject对象
toString();将jsonObject转换为JSON格式字符串。
迭代器();返回一个迭代器对象来遍历元素。
然后还有一些put/get方法,需要普通get方法和pot方法来强调,如API中所述:
Agetmethod returns a value if one can be found, and throws an exception if one cannot be found. Anoptmethod returns a default value instead of throwing an exception, and so is useful for obtaining optional values.
JSON array:JSON array is an unordered sequence of values. Is the last class, inherits the object and implements the JSON interface.
施工方法如下:
JSON array();构造一个空的JSONArray对象。
一般方法如下:
from array(Object[]array);静态方法,通过java数组创建JSONArray对象。
from collection(collection collection); Static method, creating a JSONArray object through the collection object.
from string(string string);静态方法,通过json格式字符串构造JSON数组对象。
toString();将jsonArray对象转换为JSON格式字符串。
迭代器();返回一个迭代器对象来遍历元素。
接下来也是put/get方法.
5. XMLSerializer: a utility class that converts JSON into XML. A class that inherits from the target.
施工方法如下:
XML序列化程序();创建一个XMLSerializer对象
一般方法如下:
setroot name(string root name);设置转换后的xml的根元素的名称。
SetTypeHintsEnabled (Boolean Hints Enabled); Sets whether each element displays the type attribute.
write(JSON JSON);将json对象转换成xml,默认的字符编码是UTF-8。
需要设置编码可以用write(JSONjson,Stringencoding)
XML和JSON字符串的一个简单示例:
JSON:
{Password: 123456, User Name: Zhang San}
xml
?xml version=1.0 encoding=UTF-8?user_info
password123456/password
User name Zhang San/user name
/user_info
java,以上就是本文为您收集整理的java最新内容,希望能帮到您!更多相关内容欢迎关注。