JSONObject 순서가 없는 이름/값 컬렉션 문자열에서 텍스트를 쌍 및 구문 분석하여 지도 생성 -같은 물건. JSONObject getString() 과 같은 다양한 유형의 값을 표시하는 몇 가지 중요한 방법이 있습니다. 키 문자열과 연관된 문자열을 가져오는 메소드, getInt() 키와 관련된 int 값을 가져오는 메소드, getDouble() 키 및 getBoolean() 과 관련된 이중 값을 가져오는 메소드 키와 관련된 부울 값을 가져오는 메서드입니다.
예시
import org.json.*; public class JSONObjectTypeValuesTest { public static void main(String[] args) throws JSONException { JSONObject jsonObj = new JSONObject( "{" + "Name : Adithya," + "Age : 22, " + "Salary: 10000.00, " + "IsSelfEmployee: false " + "}" ); System.out.println(jsonObj.getString("Name")); // returns string System.out.println(jsonObj.getInt("Age")); // returns int System.out.println(jsonObj.getDouble("Salary")); // returns double System.out.println(jsonObj.getBoolean("IsSelfEmployee")); // returns true/false } }
출력
Adithya 22 10000.0 false