मैंने Google के Gson को संभावित JSON प्लगइन के रूप में देखा। क्या कोई इस तरह का मार्गदर्शन दे सकता है कि मैं इस JSON स्ट्रिंग से जावा कैसे उत्पन्न कर सकता हूं?
Google Gson जेनरिक और नेस्टेड बीन्स का समर्थन करता है। []
JSON में एक सरणी का प्रतिनिधित्व करता है और इस तरह के रूप में एक जावा संग्रह करने के लिए नक्शे चाहिए List
या सिर्फ एक सादे जावा सरणी। {}
JSON में एक वस्तु का प्रतिनिधित्व करता है और एक जावा के लिए नक्शे चाहिए Map
या सिर्फ कुछ JavaBean वर्ग।
आपके पास एक JSON ऑब्जेक्ट है जिसमें कई गुण हैं जो groups
संपत्ति बहुत समान प्रकार के नेस्टेड ऑब्जेक्ट की एक सरणी का प्रतिनिधित्व करती है। यह Gson के साथ निम्नलिखित तरीके से पार्स किया जा सकता है:
package com.stackoverflow.q1688099;
import java.util.List;
import com.google.gson.Gson;
public class Test {
public static void main(String... args) throws Exception {
String json =
"{"
+ "'title': 'Computing and Information systems',"
+ "'id' : 1,"
+ "'children' : 'true',"
+ "'groups' : [{"
+ "'title' : 'Level one CIS',"
+ "'id' : 2,"
+ "'children' : 'true',"
+ "'groups' : [{"
+ "'title' : 'Intro To Computing and Internet',"
+ "'id' : 3,"
+ "'children': 'false',"
+ "'groups':[]"
+ "}]"
+ "}]"
+ "}";
// Now do the magic.
Data data = new Gson().fromJson(json, Data.class);
// Show it.
System.out.println(data);
}
}
class Data {
private String title;
private Long id;
private Boolean children;
private List<Data> groups;
public String getTitle() { return title; }
public Long getId() { return id; }
public Boolean getChildren() { return children; }
public List<Data> getGroups() { return groups; }
public void setTitle(String title) { this.title = title; }
public void setId(Long id) { this.id = id; }
public void setChildren(Boolean children) { this.children = children; }
public void setGroups(List<Data> groups) { this.groups = groups; }
public String toString() {
return String.format("title:%s,id:%d,children:%s,groups:%s", title, id, children, groups);
}
}
बहुत आसान है, है ना? बस एक उपयुक्त JavaBean और कॉल करें Gson#fromJson()
।
यह सभी देखें: