用漂亮的文字编写JSON文件

cod*_*ers 5 java json pretty-print gson

在以下代码中,我们将对象和JSON类型的数组写入文本文件:

/**
 * @param args the command line arguments
 */
public static void main(String[] args) throws IOException {


    JSONObject obj = new JSONObject();
    obj.put("Name", "crunchify.com");
    obj.put("Author", "App Shah");

    JSONArray company = new JSONArray();
    company.add("Compnay: eBay");
    company.add("Compnay: Paypal");
    company.add("Compnay: Google");
    obj.put("Company List", company);

    // try-with-resources statement based on post comment below :)
    try (FileWriter file = new FileWriter("file.txt")) {


                    Gson gson = new GsonBuilder().setPrettyPrinting().create();
                    JsonParser jp = new JsonParser();
                    JsonElement je = jp.parse(obj.toJSONString());
                    String prettyJsonString = gson.toJson(je);
                    System.out.println(prettyJsonString);                  

                    file.write(prettyJsonString);
        System.out.println("Successfully Copied JSON Object to File...");
        System.out.println("\nJSON Object: " + obj);

                    file.flush();
                    file.close();
    }


}
Run Code Online (Sandbox Code Playgroud)

}

在以下代码中,我们漂亮地打印了JSONtostring:

                    Gson gson = new GsonBuilder().setPrettyPrinting().create();
                    JsonParser jp = new JsonParser();
                    JsonElement je = jp.parse(obj.toJSONString());
                    String prettyJsonString = gson.toJson(je);
                    System.out.println(prettyJsonString);                  
Run Code Online (Sandbox Code Playgroud)

prettyJsonString的打印结果是:

{
      "Name": "crunchify.com",
      "Author": "App Shah",
       "Company List": [
      "Compnay: eBay",
       "Compnay: Paypal",
       "Compnay: Google"
    ]
    }
Run Code Online (Sandbox Code Playgroud)

但是,当我们将prettyJsonString写入文件时,结果是线性的,看起来与上面的结果不一样。

file.write(prettyJsonString);

{  "Name": "crunchify.com",  "Author": "App Shah",  "Company List": [    "Compnay: eBay",    "Compnay: Paypal",    "Compnay: Google"  ]}
Run Code Online (Sandbox Code Playgroud)

我们如何写入文件并使结果漂亮又漂亮,就像上面prettyJsonString的System.out.prinln一样?谢谢分配

Joh*_*hey 0

正如 Nivas 在评论中所说,某些程序会删除换行符,因此在这些程序(例如记事本)中查看输出可能会使它们看起来“丑陋”。确保您在正确显示换行符的程序中查看它们,例如 Notepad++。