Json이 Java 객체로 변환
package com.chinatech.common.utils;
import java.lang.reflect.Field;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.List;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
/**
* the tool class for change json to object
* @author wanggang
* Email: [email protected]
*
*/
public class Json2Bean {
private static final boolean DEBUG = true;
@SuppressWarnings("unchecked")
public static <T> T getBean(String content, Class<T> beanClass) {
if(DEBUG)Logger.i(content);
T bean = null;
try {
JSONObject jsonObject = new JSONObject(content);
Iterator<String> keys = jsonObject.keys();
bean = beanClass.newInstance();
while(keys.hasNext()) {
String key = keys.next();
if(DEBUG)Logger.i("the field is '"+key+"'");
Field field;
try {
field = beanClass.getDeclaredField(key);
field.setAccessible(true);
field.set(bean, jsonObject.get(key));
} catch (NoSuchFieldException e) {
Logger.e("NoSuchFieldException");
e.printStackTrace();
} catch (IllegalArgumentException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IllegalAccessException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (JSONException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
} catch (InstantiationException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
} catch (IllegalAccessException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
} catch (JSONException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return bean;
}
@SuppressWarnings("rawtypes")
public static <T> List getList(String content, Class<T> beanClass) {
List<T> list;
if(DEBUG)Logger.i(content);
JSONArray jsonArray=null;
try {
jsonArray = new JSONArray(content);
} catch (JSONException e) {
Logger.e("The wrong JSON data format");
return null;
}
list=new ArrayList<T>();
for(int i=0;i<jsonArray.length();i++){
JSONObject jsonObject = (JSONObject)jsonArray.opt(i);
if(jsonObject!=null){
list.add(getBean(jsonObject.toString(),beanClass));
}
}
return list;
}
@SuppressWarnings("rawtypes")
public static <T> LinkedList getLinkedList(String content, Class<T> beanClass) {
LinkedList<T> list;
if(DEBUG)Logger.i(content);
JSONArray jsonArray=null;
try {
jsonArray = new JSONArray(content);
} catch (JSONException e) {
Logger.e("The wrong JSON data format");
return null;
}
list=new LinkedList<T>();
for(int i=0;i<jsonArray.length();i++){
JSONObject jsonObject = (JSONObject)jsonArray.opt(i);
if(jsonObject!=null){
list.add(getBean(jsonObject.toString(),beanClass));
}
}
return list;
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Kotlin의 기초 - 2부지난 글에서는 Kotlin이 무엇인지, Kotlin의 특징, Kotlin에서 변수 및 데이터 유형을 선언하는 방법과 같은 Kotlin의 기본 개념에 대해 배웠습니다. 유형 변환은 데이터 변수의 한 유형을 다른 데이터...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.