json文件I / O在java中使用gson的漂亮打印格式?

时间:2017-09-14 05:03:08

标签: java json io gson writefile

  • 我已经知道gson如何工作,也知道如何启用漂亮 打印。
  • 我想使用gson而不是simplejson。
  • 我遇到的问题是我无法创建一个由员工对象列表组成的文件。
  • 我已经在stackoverflow,mkyong,google的github和许多其他网站上看到了所有其他 java 主题,但我仍然无法完成这个简单的事情。
  • 我已经知道如何阅读具有此特定格式的文件,但我无法编写它。
  • 问题是我无法在程序中将所有这些内容组合在一起。
  • 启用了漂亮打印的gson中的对象列表必须具有正确的缩进,并且每个对象必须用逗号分隔,并且这些对象必须包含在 [ ] 。
  • 使用代码
  • 解释的问题

public class Employee implements Serializable {

    private String lastName;
    private String address;
    private int id;
    private String name;

}

我想创建一个包含以下内容的json文件

 [
            {
                "id":1,
                "name": "John",
                "lastName": "Doe",
                "address": "NY City"
            },
            {
                "id":2,
                "name": "John",
                "lastName": "Doe",
                "address": "Canada"
            },
            {
                "id":3,
                "name": "John",
                "lastName": "Doe",
                "address": "Las Vegas"
            },
    ]
  • 我设法创建并编写了一个Person对象的json文件(作为gson json Person对象),然后读取它,但再次只作为Person对象,其中每一行都是一个独立的对象,而不是List或Array的一部分Person对象,像这样
    {"id":1,"name": "John","last": "Doe","address": "NY City"}
    {"id":2,"name": "John","last": "Doe","address": "Canada"}
    {"id":3,"name": "John","last": "Doe","address": "Las Vegas"}
    

但这不是我想要的最终计划。

  • 我还能够使用以下信息和格式对文件进行硬编码,并成功获取Person对象
 [
          {
              "id":1,
              "name": "John",
              "lastName": "Doe",
              "address": "NY City"
          },
          {
              "id":2,
              "name": "John",
              "lastName": "Doe",
              "address": "Canada"
          },
          {
              "id":3,
              "name": "John",
              "lastName": "Doe",
              "address": "Las Vegas"
          },
    ]

但我不知道如何用java程序创建和编写这个json文件    作为Person对象的数组,其中每个Person对象都是其中的一部分    列表或数组与漂亮的打印格式,作为我硬编码和    我能读懂。 我怎么能以优雅的方式做到这一点?

修改--- 非常感谢@Shyam!

这是我的最终代码,希望它有助于某人。

import java.io.BufferedReader;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;

import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.google.gson.reflect.TypeToken;

public class TestFileOfGsonWriter {

    Gson gson ;
    String filePath ;
    BufferedReader bufferToReader ;


    public TestFileOfGsonWriter()
    {
        this.filePath = 
                "C:\\FileOfGsonSingleListOfEmployees\\employees.json" ;
    }

    public List<Employee> createEmployees()
    {
        Employee arya = new Employee("Stark", "#81, 2nd main, Winterfell", 2, "Arya");
        Employee jon = new Employee("Snow", "#81, 2nd main, Winterfell", 1, "Jon");
        Employee sansa = new Employee("Stark", "#81, 2nd main, Winterfell", 3, "Sansa");

        List<Employee> employees = new ArrayList<>();
        employees.add(jon);
        employees.add(arya);
        employees.add(sansa);
        return employees ;
    }

    public void jsonWriter(List<Employee> employees, String filePath)
    {
        this.gson = new GsonBuilder().setPrettyPrinting().create();
        try(FileWriter writer = new FileWriter(filePath))
        {
            gson.toJson(employees,writer);
            writer.close();
        }
        catch(IOException e)
        {
            e.printStackTrace();
        }
    }

    public void showEmployeeObjects()
    {
        try {
            List<Employee> employees = this.getAllEmployees();
            employees.forEach(e -> Employee.showEmployeeDetails(e));
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    public ArrayList<Employee> getAllEmployees() throws IOException
    {
        FileReader reader = new FileReader(this.filePath);
        this.bufferToReader = new BufferedReader(reader) ;
        ArrayList <Employee> employees = this.gson.fromJson(getJson(), 
                new TypeToken<ArrayList<Employee>>(){}.getType());
        return employees ;
    }

    private String getJson() throws IOException
    {
        StringBuilder serializedEmployee = new StringBuilder();
        String line ;
        while ( (line = this.bufferToReader.readLine()) != null )
        {
            serializedEmployee.append(line);
        }
        this.bufferToReader.close();
        return serializedEmployee.toString();
    }

    public static void main(String[] args) {
        TestFileOfGsonWriter testWriting = new TestFileOfGsonWriter() ;
        List<Employee> employees = testWriting.createEmployees();
        testWriting.jsonWriter(employees, testWriting.filePath);
        testWriting.showEmployeeObjects();
    }
}

我修改了我的员工类,所以它会与他的虚拟对象相匹配,我觉得这更好,这就是它现在的样子。

import java.io.Serializable;

public class Employee implements Serializable {

    private static final long serialVersionUID = 1L;
    String name ;
    String address;
    String lastName ;
    int id ;

    public static void showEmployeeDetails(Employee e)
    {
        System.out.println();
        System.out.println("Employee's name: "+e.name);
        System.out.println("Employee's last name"+e.lastName);
        System.out.println("Employee's address: "+e.address);
        System.out.println("Employee's ID: "+e.id);
    }

    public Employee(String myName, String myAddress, int myId, String myLastName)
    {
        this.name = myName ;
        this.address = myAddress;
        this.lastName = myLastName;
        this.id = myId ;
    }
}

因此,程序创建的json文件看起来就像我想要的那样:

[
  {
    "name": "Snow",
    "address": "#81, 2nd main, Winterfell",
    "lastName": "Jon",
    "id": 1
  },
  {
    "name": "Stark",
    "address": "#81, 2nd main, Winterfell",
    "lastName": "Arya",
    "id": 2
  },
  {
    "name": "Stark",
    "address": "#81, 2nd main, Winterfell",
    "lastName": "Sansa",
    "id": 3
  }
]

最后,这是输出:

Employee's name: Snow
Employee's last nameJon
Employee's address: #81, 2nd main, Winterfell
Employee's ID: 1

Employee's name: Stark
Employee's last nameArya
Employee's address: #81, 2nd main, Winterfell
Employee's ID: 2

Employee's name: Stark
Employee's last nameSansa
Employee's address: #81, 2nd main, Winterfell
Employee's ID: 3

2 个答案:

答案 0 :(得分:1)

首先将这些对象存储到对象列表中。然后添加这行代码以进行漂亮打印。

public boolean homeGoal(int points) {
    boolean success = true;
    if (mHomePoints >= 0 && mHomePoints < 4) {
        mHomePoints = mHomePoints + points;
    } else {
        success = false;
    }
    return success;
}

答案 1 :(得分:1)

当您是新手时,我会快速引导您完成将List EmployeeString filePath个对象写入JSON文件并进行漂亮打印的过程:

第1步:创建一个接收列表和public void jsonWriter(List<Employee> employees, String filePath)的方法:

Gson

第2步:在启用了漂亮打印的情况下构建Gson gson = new GsonBuilder().setPrettyPrinting().create();对象:

List<Employee>

第3步:使用filePathFileWriter写入给定 try(FileWriter writer = new FileWriter(filePath)) { gson.toJson(employees, writer); writer.close(); } catch (IOException e) { e.printStackTrace(); } 的JSON文件中:

public void jsonWriter(List<Employee> employees, String filePath) {
        Gson gson = new GsonBuilder().setPrettyPrinting().create();
        try(FileWriter writer = new FileWriter(filePath)) {
            gson.toJson(employees, writer);
            writer.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

最后整个方法看起来像这样:

Employee

第4步:现在,构建您的List个对象,将其添加到filePath并使用相应的 Employee arya = new Employee("Stark", "#81, 2nd main, Winterfell", 2, "Arya"); Employee jon = new Employee("Snow", "#81, 2nd main, Winterfell", 1, "Jon"); Employee sansa = new Employee("Stark", "#81, 2nd main, Winterfell", 3, "Sansa"); List<Employee> employees = new ArrayList<>(); employees.add(jon); employees.add(arya); employees.add(sansa); jsonWriter(employees, "C:/downloads/employees.json");

调用此方法
[
  {
    "lastName": "Snow",
    "address": "#81, 2nd main, Winterfell",
    "id": 1,
    "name": "Jon"
  },
  {
    "lastName": "Stark",
    "address": "#81, 2nd main, Winterfell",
    "id": 2,
    "name": "Arya"
  },
  {
    "lastName": "Stark",
    "address": "#81, 2nd main, Winterfell",
    "id": 3,
    "name": "Sansa"
  }
]

运行此代码后,JSON文件的内容将如下所示:

Employee

我希望这会对你的学习过程有所帮助。

注意:我使用了一些随机{{1}}名称和详细信息。您可以将其替换为所需的详细信息。