本文介绍了如何在Java中克隆org.json.JSONObject?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有没有一种方法可以克隆org.json.JSONObject
的实例而不对其进行字符串化和重新分析结果?
Is there a way to clone an instance of org.json.JSONObject
without stringifying it and reparsing the result?
可以接受浅表副本.
推荐答案
使用 public JSONObject(JSONObject jo, java.lang.String[] names)
构造函数和 public static java.lang.String[] getNames(JSONObject jo)
方法.
Use the public JSONObject(JSONObject jo, java.lang.String[] names)
constructor and the public static java.lang.String[] getNames(JSONObject jo)
method.
JSONObject copy = new JSONObject(original, JSONObject.getNames(original));
这篇关于如何在Java中克隆org.json.JSONObject?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!