我想更新" status"的值和"金额" Json String
{
"installmentno":"1",
"receiptid":"",
"duedate":"12-10-2016",
"paymentdate":"",
"amount":"3000.00",
"status":"unpaid"
}
答案 0 :(得分:0)
最干净的方法是将Json转换为对象,更改值,然后再转换为String Json:
其他方法:
如果Json String中只存在一个值,并且您知道当前值,请使用:String.replace("oldValue", "newValue");
使用
String.replaceAll("regex", "newValue");
和正则表达式