我想使用 RestAssured 从网站下载图像。我的代码:
Response response = given()
.log().all()
.cookie(cookie)
.get(format(image_endpoint, "46581657"));
端点返回“application/octet-stream”类型的状态码 200 和图像。如何将其保存为 jpg 文件?
我努力了:
String bin = getImageResponse()
.prettyPrint();
saveFile("foto.jpg", bin); //this method only save string to file
但我无法打开 jpg 文件。我怎样才能保存它?