首页  >  文章  >  Java  >  如何在Java中自动增加JSONObject的属性?

如何在Java中自动增加JSONObject的属性?

WBOY
WBOY转载
2023-08-19 14:41:04668浏览

如何在Java中自动增加JSONObject的属性?

一个JSONObject是一个无序的名称/值对的集合,并从字符串解析文本以生成类似于映射的对象。然而,我们可以使用JSONObject类的increment()方法自动递增JSONObject的属性。如果没有这样的属性,则创建一个值为1的属性。如果存在这样的属性,并且它是一个整数、长整数、双精度或浮点数,则将其加一。

语法

public JSONObject increment(java.lang.String key) throws JSONException

Example

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中文网其他相关文章!

声明:
本文转载于:tutorialspoint.com。如有侵权,请联系admin@php.cn删除