我从webservice请求中获得了响应,我可以在控制台上打印该响应。我想将此响应写入json文件。我尝试使用buffereWriter,但是没有写。
MyWebDriver.findElements(By.xpath("//div[@class='inner-results firm']")).click();
没有错误或异常,但是内容没有写到文件中。
答案 0 :(得分:1)
您可以使用FileWriter
。另外try block
的资源将保证您的文件将被关闭。
try(FileWriter fw = new FileWriter(cwd + "filepath")){
fw.write(response); //I guess the response is a String.
}catch(Exception ignored){}