java에서 실체 클래스를 Json으로 바꾸는 2가지 방법
package com.hyx.entity;
public class Emp {
private Integer id;
private String name;
private Integer dptNo;
private String gender;
private String duty;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Integer getDptNo() {
return dptNo;
}
public void setDptNo(Integer dptNo) {
this.dptNo = dptNo;
}
public String getGender() {
return gender;
}
public void setGender(String gender) {
this.gender = gender;
}
public String getDuty() {
return duty;
}
public void setDuty(String duty) {
this.duty = duty;
}
}
2. 실체 클래스가 Json으로 변환(1)
import java.io.IOException;
import net.sf.json.JSONObject;
import org.apache.struts2.json.JSONException;
import org.codehaus.jackson.map.ObjectMapper;
import com.hyx.entity.Emp;
public class MainTest {
public static<T> String objectToJson(T obj) throws JSONException, IOException {
ObjectMapper mapper = new ObjectMapper();
// Convert object to JSON string
String jsonStr = "";
try {
jsonStr = mapper.writeValueAsString(obj);
} catch (IOException e) {
throw e;
}
return JSONObject.fromObject(obj).toString();
}
//
public static void main(String[] args) {
Emp emp=new Emp();
emp.setId(1);
emp.setName(" ");
emp.setGender(" ");
emp.setDptNo(001);
emp.setDuty(" ");
String jsonStr="";
try {
jsonStr=objectToJson(emp);
} catch (JSONException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
System.out.println(jsonStr);
}
}
(2)
import net.sf.json.JSONObject;
import com.hyx.entity.Emp;
public class MainTest {
//
public static void main(String[] args) {
Emp emp=new Emp();
emp.setId(1);
emp.setName(" ");
emp.setGender(" ");
emp.setDptNo(001);
emp.setDuty(" ");
JSONObject jsonObject = JSONObject.fromObject(emp);
System.out.println(jsonObject);
}
}
이상은 본문의 전체 내용입니다. 여러분의 학습에 도움이 되고 저희를 많이 응원해 주십시오.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
38. Java의 Leetcode 솔루션텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.