Notice
Recent Posts
Recent Comments
Link
«   2025/05   »
1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

삼라만상

[Java] net.sf.json.util.JSONStringer to net.sf.json.JSONArray 본문

Java

[Java] net.sf.json.util.JSONStringer to net.sf.json.JSONArray

좋았어렛츠고 2022. 4. 29. 12:44
  • Modules
import net.sf.json.JSONArray;
import net.sf.json.JSONObject;
import net.sf.json.util.JSONStringer;

import org.json.simple.parser.JSONParser;
  • 소스 코드
JSONStringer jsonStringer = new JSONStringer();

JSONParser parser = new JSONParser();
Object obj = parser.parse(jsonStringer.toString());
JSONArray jsonArray = JSONArray.fromObject(obj));
Comments