JSON 경량입니다. , 텍스트 기반 및 언어 독립적 데이터 교환 형식. JSON은 객체 와 같은 두 가지 구조화된 유형을 나타낼 수 있습니다. 및 배열 . 개체는 순서가 없는 키 컬렉션 /값 쌍 및 배열은 순서가 지정된 시퀀스 입니다. 가치 .
지도를 JSON으로 변환할 수 있습니다. t를 사용하는 개체 oJSONString() 메서드(정적 )의 org.json.simple.JSONValue. 여기에는 두 가지 중요한 정적 메서드가 있습니다. writeJSONString() 객체를 JSON 텍스트로 인코딩하고 작성하는 메소드, escape() 특수 문자를 이스케이프하고 따옴표를 이스케이프하는 방법, \, /, \r, \n, \b, \f, \t .
예시
import java.util.*; import org.json.simple.JSONValue; public class ConvertMapJSONTest { public static void main(String[] args) { Map<String, Object> map = new HashMap<String, Object>(); map.put("1", "India"); map.put("2", "Australia"); map.put("3", "England"); map.put("4", "South Africa"); String jsonStr = JSONValue.toJSONString(map); // converts Map to JSON System.out.println(jsonStr); } }
출력
{"1":"India","2":"Australia","3":"England","4":"South Africa"}