1 回答
TA贡献1794条经验 获得超8个赞
您无法使用实例发送文件数据File,因为它仅包含路径而不包含文件内容。您可以使用字节数组发送文件内容。
以这种方式更新控制器:
@Get(value = "/download", produces = MediaType.APPLICATION_OCTET_STREAM)
public HttpResponse<byte[]> downloadDocument() throws IOException, URISyntaxException {
String documentName = "SampleDocument.pdf";
byte[] content = Files.readAllBytes(Paths.get(getClass().getClassLoader().getResource(documentName).toURI()));
return HttpResponse.ok(content).header("Content-Disposition", "attachment; filename=\"" + documentName + "\"");
}
那么客户端将会是这样的:
@Get(value = "/download", processes = MediaType.APPLICATION_OCTET_STREAM)
Flowable<byte[]> downloadDocument();
最后客户致电:
Flowable<byte[]> fileFlowable = downloadDocumentClient.downloadDocument();
Maybe<byte[]> fileMaybe = fileFlowable.firstElement();
byte[] content = fileMaybe.blockingGet();
更新: 如果您需要将接收到的字节(文件内容)保存到客户端计算机(容器)上的文件中,那么您可以这样做,例如:
Path targetPath = Files.write(Paths.get("target.pdf"), fileMaybe.blockingGet());
如果您确实需要实例File而不是Path进一步处理,那么只需:
File file = targetPath.toFile();
添加回答
举报