我正在尝试将json字符串解析为java对象。目前代码是手动读取文件并生成java对象。但是,我希望将实现带到gson。
以下是我从网络服务电话中收到的json:
{ "comment": [
"This file is used to define the behavior for the elements parsed.",
"Each entry in the file will have the format of element:name, skip:bool",
"If SkipFlag is true, it means that element need not be processed.",
"Convention used for elements and rule names is camelCase"
],
"rules": [ { "element": "html", "skip": true },
{ "element": "head", "skip": true },
{ "element": "head", "skip": true },
{ "element": "body", "skip": true }
]
}
我需要忽略评论并转换规则。这是我试图为规则java对象定义的java类型:
// Arraylist < Map < elementname, Map < name, value > > >
ArrayList< Map<String, Map<String, String> > > rules;
使用gson有一种简单的方法吗?
答案 0 :(得分:5)
使用此
GsonBuilder builder = new GsonBuilder();
Gson gson = builder.enableComplexMapKeySerialization().create();
Type type = new TypeToken<ArrayList< Map<String, ArrayList<Map<String, String> > > >>() {}.getType();
ArrayList< Map<String, ArrayList<Map<String, String> > > > obj = gson.fromJson(str, type);
答案 1 :(得分:3)
您可以声明特定的课程:
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
import com.google.gson.Gson;
class Rule {
String element;
boolean skip;
}
class ElementParser {
String[] comment;
Rule[] rules;
}
public class JSonDecoder {
public static void main( String[] args ) throws IOException {
try( BufferedReader reader =
new BufferedReader( new FileReader( "Skip.json" ))) {
System.out.println(
new Gson().fromJson( reader, ElementParser.class ).toString());
}
}
}
以下是 long 版本:
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
import com.google.gson.Gson;
class Rule {
String element;
boolean skip;
@Override public String toString() {
StringBuilder sb = new StringBuilder();
sb.append( '\t' );
sb.append( element );
sb.append( " ==> " );
sb.append( skip );
sb.append( '\n' );
return sb.toString();
}
}
class ElementParser {
String[] comment;
Rule[] rules;
@Override public String toString() {
StringBuilder sb = new StringBuilder();
sb.append( "Comment:\n" );
for( String c : comment ) {
sb.append( '\t' );
sb.append( c );
sb.append( '\n' );
}
sb.append( "Rules:\n" );
for( Rule r : rules ) {
sb.append( r.toString());
}
return sb.toString();
}
}
public class JSonDecoder {
public static void main( String[] args ) throws IOException {
try( BufferedReader reader = new BufferedReader( new FileReader( "Skip.json" ))) {
System.out.println(
new Gson().fromJson( reader, ElementParser.class ).toString());
}
}
}
结果:
Comment:
This file is used to define the behavior for the elements parsed.
Each entry in the file will have the format of element:name, skip:bool
If SkipFlag is true, it means that element need not be processed.
Convention used for elements and rule names is camelCase
Rules:
html ==> true
head ==> true
head ==> true
body ==> true
答案 2 :(得分:2)
你也可以尝试这个..
用于保存规则和评论的数据类
import java.util.List;
public class Data {
private List<String> comments;
private List<Rule> rules;
public Data() {}
public List<String> getComments() {
return comments;
}
public void setComments(List<String> comments) {
this.comments = comments;
}
public List<Rule> getRules() {
return rules;
}
public void setRules(List<Rule> rules) {
this.rules = rules;
}
}
用于保存元素和跳过的Rule类 公共阶级规则{
private String element;
private boolean skip;
public Rule() {}
public String getElement() {
return element;
}
public void setElement(String element) {
this.element = element;
}
public boolean isSkip() {
return skip;
}
public void setSkip(boolean skip) {
this.skip = skip;
}
}
最后,您可以使用类似的东西将json中的规则转换为java:
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.util.List;
import com.google.gson.Gson;
public class GsonTest {
public static void main(String[] args) throws FileNotFoundException {
BufferedReader bufferedReader = new BufferedReader(new FileReader("C:/Users/JESNAMOL/Desktop/json.txt"));//i have kept your json string in a file for demonstration
Gson gson = new Gson();
Data data = gson.fromJson(bufferedReader, Data.class);
List<Rule> rules = data.getRules();
for (Rule rule : rules) {
System.out.println("element: " + rule.getElement());
System.out.println("skip: " + rule.isSkip());
}
}
}