A JSONObject는 이름/값 쌍의 순서가 지정되지 않은 컬렉션이며 문자열의 텍스트를 구문 분석하여 map과 유사한 개체를 생성합니다. 그러나 JSONObject 클래스의 increment() 메서드 를 사용하여 JSONObject의 속성을 자동으로 증가시킬 수 있습니다. 해당 속성이 없으면 값이 1인 속성을 생성하세요. 그러한 속성이 존재하고 그것이 정수, long, double 또는 float이면 1씩 증가됩니다.
public JSONObject increment(java.lang.String key) throws JSONException
import org.json.JSONException; import org.json.JSONObject; public class IncrementJSONObjectTest { public static void main(String[] args) throws JSONException { <strong> </strong>JSONObject jsonObj = new JSONObject(); jsonObj.put("year", 2019); jsonObj.put("age", 25); System.out.println(jsonObj.toString(3)); jsonObj.increment("year").increment("age"); System.out.println(jsonObj.toString(3)); jsonObj.increment("year").increment("age"); System.out.println(jsonObj.toString(3)); jsonObj.increment("year").increment("age"); System.out.println(jsonObj.toString(3)); } }
{ "year": 2019, "age": 25 } { "year": 2020, "age": 26 } { "year": 2021, "age": 27 } { "year": 2022, "age": 28 }
위 내용은 Java에서 JSONObject의 속성을 자동으로 추가하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!