A JSONObject は、名前/値ペアの順序なしコレクションであり、文字列からテキストを解析して、オブジェクトのようなものを生成します。 を にマップします。ただし、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 中国語 Web サイトの他の関連記事を参照してください。