如何将RESTAssured Output以JSON格式存储到文件中

时间:2016-11-18 19:46:56

标签: java json filewriter

我正在使用REST Assured来存储POST调用的响应。我想将响应存储在JSON格式的文件中,因为我需要在旁边进行PUT调用。目前我能够存储对文件的响应,但它以String格式存储。如何将其转换为JSON格式?

 @Test
public void postIt() throws Exception {
    if(Ver>=currentVer) {
        InputStream resource = getClass().getClassLoader().getResourceAsStream("inputJSONBody.json");
        String json = IOUtils.toString(resource);
        System.out.println(json);
        Response response = given().contentType("application/json").accept("application/json").body(json).when().post("/APIURI");
        String responseBody = response.getBody().asString();
        response.then().statusCode(201);

        try {

            FileWriter file = new FileWriter("./output.json");
            file.write(responseBody);
            file.flush();
            file.close();

        } catch (IOException e) {
            e.printStackTrace();
        }

    }

}

2 个答案:

答案 0 :(得分:1)

我能够使用REST Assured

提供的prettyPrint()功能来完成它

答案 1 :(得分:0)

您可以使用以下示例代码来实现:

FileWriter file = new FileWriter("./output.json");
file.write(responseBody.prettyPrint());
file.flush();
file.close();