Skip to content
This repository has been archived by the owner on Oct 23, 2024. It is now read-only.

ParseToExistingObject

高铁 edited this page Nov 11, 2016 · 1 revision

Parse to an existing object

JSONObject obj = new JSONObject(1024);

String text = "...";
DefaultJSONParser parser = new DefaultJSONParser(text);
parser.parseObject(obj); // parse to existing object
Clone this wiki locally