728x90
반응형
SMALL
자바 ArrayList를 Json 객체로 변경하는 예제..
import net.sf.json.JSONArray;
import com.google.gson.Gson;
// 라이브러리가 없으면 메이븐이나 jar파일을 직접 다운로드해서 import..
List resultList = new ArrayList<String>();
resultList.add("a");
resultList.add("b");
resultList.add("c");
// 방법 1
//JSONArray 객체 사용
JSONArray result = JSONArray.fromObject(resultList); //HashMap 등의 복잡한 자료형으로 덮어도 가능
System.out.println("제이슨 결과 = " + mapResult.toString());
// 방법 2
// Gson 사용
String json = new Gson().toJson(resultList);
System.out.println("제이슨 결과2 = " + json;
* GSon 라이브러리 출처 및 참고
https://github.com/google/gson
728x90
반응형
LIST
'Java' 카테고리의 다른 글
JAVA 문자열 앞자리 0 제거 (0) | 2023.03.12 |
---|---|
String을 Json으로 변환 예제 (2) | 2023.03.12 |
자바 지수 표현 없애기 E (BigDecimal) (0) | 2020.11.20 |
[Eclipse] workspace 사용중으로 나와서 안열릴때 (eclipse please choose another workspace as is currently in use) (0) | 2020.11.20 |
JAVA 소수점 자르기 (0) | 2020.11.20 |