json 자바 대상으로 변환 예시
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import com.jfinal.kit.JsonKit;
public class JsonToJavaObject {
public static void main(String[] args) {
Object o1 = parse("{\"aa\":123,cc:[1,2,3,4,{cd:f,bb:234}]}");
System.out.println(JsonKit.toJson(o1));
}
public static Object parse(String json){
if(json == null){
return null;
}
json = json.trim();
if("string".equals(typeof(json))){
return json;
}
if("map".equals(typeof(json))){
return parseMap(json);
}
if("list".equals(typeof(json))){
return parseList(json);
}
return null;
}
public static Map parseMap(String json){
if(!"map".equals(typeof(json))){
throw new RuntimeException("json Map ");
}
Map r = new HashMap();
parseToken(r,json,null);
return r;
}
public static List parseList(String json){
if(!"list".equals(typeof(json))){
throw new RuntimeException("json list ");
}
List r = new ArrayList();
parseToken(null, json, r);
return r;
}
public static String typeof(String json){
if(json.length() == 0)return "string";
if('{'==json.charAt(0)){
if('}' == json.charAt(json.length()-1)){
return "map";
}
}
if('['==json.charAt(0)){
if(']'==json.charAt(json.length()-1)){
return "list";
}
}
return "string";
}
private static void parseToken(Map r, String json,List r2) {
boolean syh = true; //
boolean dyh = true;//
boolean dkh = true;//
boolean zkh = true;//
boolean isKey = true;
StringBuffer key = new StringBuffer();
StringBuffer value = new StringBuffer();
for(int i=1;i<json.length()-1;i++){
char item = json.charAt(i);
if(dyh&&syh&&zkh)if('{' == item || '}' == item){
dkh = !dkh;
}
if(dyh&&syh&&dkh)if('[' == item || ']' == item){
zkh = !zkh;
}
if(dyh&&dkh&&zkh)if('"' == item){
syh = !syh;
continue;
}
if(syh&&dkh&&zkh)if(syh)if('\'' == item){
dyh = !dyh;
continue;
}
if(dyh&&syh&&dkh&&zkh)if(r2==null)if(dyh)if(':'==item){
isKey = false;
continue;
}
if(dyh&&syh&&dkh&&zkh)if(','==item){
isKey = true;
if(r != null){
r.put(key.toString(), parse(value.toString()));
}
if(r2 != null){
r2.add(parse(key.toString()));
}
key = new StringBuffer();
value = new StringBuffer();
continue;
}
if(isKey){
key.append(item);
}else{
value.append(item);
}
}
if(!key.toString().trim().equals("")){
if(r != null){
if(value.toString().trim().equals(""))throw new RuntimeException("json ");
r.put(key.toString(), parse(value.toString()));
}
if(r2 != null){
r2.add(parse(key.toString()));
}
}
}
}
콘솔 출력
{"aa":"123","cc":["1","2","3","4",{"bb":"234","cd":"f"}]}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
콘텐츠 SaaS | JSON 스키마 양식 빌더Bloomreach Content를 위한 JSON Form Builder 맞춤형 통합을 개발합니다. 최근 Bloomreach Content SaaS는 내장 앱 프레임워크를 사용하여 혁신적인 콘텐츠 유형 필드를 구축할...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.