我无法从Json文件创建对象。我有三个类,一个用于处理创建对象的GsonReader,一个是POJO类Model,另一个是Main方法类,在其中我从GsonReader调用方法。请您告诉我我的代码有什么问题,并给出一些解释吗?

已编辑

GsonReader

import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;

import com.google.gson.FieldNamingPolicy;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.google.gson.stream.JsonReader;

public class GsonReader {

private String path = "D:\\ImportantStuff\\Validis\\Automation\\json.txt";

public void requestGson() throws FileNotFoundException {
    Gson gson = new GsonBuilder()
            .disableHtmlEscaping()
            .setFieldNamingPolicy(FieldNamingPolicy.UPPER_CAMEL_CASE)
            .setPrettyPrinting()
            .serializeNulls()
            .create();
    JsonReader reader = new JsonReader(new FileReader(path));
    //BufferedReader reader = new BufferedReader(new FileReader(path));
    Object json = gson.fromJson(reader, Model.class);
    System.out.println(json.toString());
 }
}


主要

import java.io.FileNotFoundException;

public class Main {

public static void main(String[] args) throws FileNotFoundException {
    GsonReader r = new GsonReader();
    r.requestGson();

 }

}


模型

public class Model {
    private String name;
    private String type;
    private String value;

public Model(String name, String type, String value){
    this.name = name;
    this.type = type;
    this.value = value;
}

public String getName(){
    return name;
}

public void setName(String name){
    this.name = name;
}

public String getType(){
    return type;
}

public void setType(String type){
    this.type = type;
}

public String getValue(){
    return value;
}

public void setValue(String value){
    this.value = value;
 }
}
public String toString(){
    return "Name: " + name + "\n" + "Type: " + type + "\n" + "Value: " + value;
}


杰森

{
'name': 'Branding',
'type': 'String',
'value': 'Tester'
}

最佳答案

用逗号分隔JSON属性,并使用适当的引号。

{
"name": "example",
"type": "example",
"value": "example"
}

09-10 21:14