【文件属性】:
文件名称:java jsonto对象互转
文件大小:1.45MB
文件格式:ZIP
更新时间:2018-06-21 11:31:40
jdk
package com.json;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import net.sf.ezmorph.object.DateMorpher;
import net.sf.json.JSONArray;
import net.sf.json.JSONObject;
import net.sf.json.JsonConfig;
import net.sf.json.processors.JsonValueProcessor;
import net.sf.json.util.CycleDetectionStrategy;
import net.sf.json.util.JSONUtils;
public class TestJsonServlet {
/**
* 从一个JSON 对象字符格式中得到一个java对象
*
* @param jsonString
* @param pojoCalss
* @return
*/
@SuppressWarnings("unchecked")
public static T jsonToObject(String jsonString, Class pojoCalss) {
Object pojo;
JSONObject jsonObject = JSONObject.fromObject(jsonString);
pojo = JSONObject.toBean(jsonObject, pojoCalss);
return (T) pojo;
}
/**
* json字符串转换成集合
*
* @param jsonString
* @param pojoClass
* @return
*/
@SuppressWarnings("unchecked")
public static List jsonToList(String jsonString, Class pojoClass) {
JSONArray jsonArray = JSONArray.fromObject(jsonString);
JSONObject jsonObject;
Object pojoValue;
List list = new ArrayList();
for (int i = 0; i < jsonArray.size(); i++) {
jsonObject = jsonArray.getJSONObject(i);
pojoValue = JSONObject.toBean(jsonObject, pojoClass);
list.add((T) pojoValue);
}
return list;
}
/**
* json字符串转换成集合
*
* @param jsonString
* @param pojoClass
* @return
*/
@SuppressWarnings("unchecked")
public static List jsonToList(String jsonString, Class pojoClass, String dataFormat) {
JsonConfig jsonConfig = configJson(dataFormat);
JSONArray jsonArray = JSONArray.fromObject(jsonString, jsonConfig);
JSONObject jsonObject;
Object pojoValue;
List list = new ArrayList();
for (int i = 0; i < jsonArray.size(); i++) {
jsonObject = jsonArray.getJSONObject(i);
pojoValue = JSONObject.toBean(jsonObject, pojoClass);
list.add((T) pojoValue);
}
return list;
}
/**
* 将java对象转换成json字符串
*
* @param javaObj
* @return
*/
public static String objectToJson(Object javaObj) {
JSONObject json;
json = JSONObject.fromObject(javaObj);
return json.toString();
}
/**
* 将java对象转换成json字符串,并设定日期格式
*
* @param javaObj
* 要转换的java对象
* @param dataFormat
* 制定的日期格式
* @return
*/
public static String objectToJson(Object javaObj, String dataFormat) {
JSONObject json;
JsonConfig jsonConfig = configJson(dataFormat);
json = JSONObject.fromObject(javaObj, jsonConfig);
return json.toString();
}
/**
* list变成json
*
* @param list
* @return
*/
public static String listToJson(List list) {
JSONArray json;
json = JSONArray.fromObject(list);
return json.toString();
}
/**
* list变成json
*
* @param list
* @return
*/
public static String listToJson(List list, String dataFormat) {
JSONArray json;
JsonConfig jsonConfig = configJson(dataFormat);
json = JSONArray.fromObject(list, jsonConfig);
return json.toString();
}
/**
* JSON 时间解析器
*
* @param datePattern
* @return
*/
public static JsonConfig configJson(final String datePattern) {
JSONUtils.getMorpherRegistry().registerMorpher(new DateMorpher(new String[] { datePattern }));
JsonConfig jsonConfig = new JsonConfig();
jsonConfig.setIgnoreDefaultExcludes(false);
jsonConfig.setCycleDetectionStrategy(CycleDetectionStrategy.LENIENT);
jsonConfig.registerJsonValueProcessor(Date.class, new JsonValueProcessor() {
@Override
public Object processObjectValue(String key, Object value, JsonConfig jsonConfig) {
if (value instanceof Date) {
String str = new SimpleDateFormat(datePattern).format((Date) value);
return str;
}
return value == null ? null : value.toString();
}
@Override
public Object processArrayValue(Object value, JsonConfig jsonConfig) {
String[] obj = {};
if (value instanceof Date[]) {
SimpleDateFormat sf = new SimpleDateFormat(datePattern);
Date[] dates = (Date[]) value;
obj = new String[dates.length];
for (int i = 0; i < dates.length; i++) {
obj[i] = sf.format(dates[i]);
}
}
return obj;
}
});
return jsonConfig;
}
}
【文件预览】:
json-lib-2.3-jdk15包(全)
----ezmorph-1.0.6.jar(84KB)
----commons-collections-3.2.1.jar(562KB)
----commons-logging-1.1.1.jar(59KB)
----commons-beanutils-1.8.0.jar(226KB)
----commons-lang-2.6.jar(278KB)
----json-lib-2.3-jdk15.jar(148KB)
----xom-1.2.2.jar(301KB)