我从特定链接下载pdf文件时遇到问题。
例如,我有一个像http://<host>:<port>/alfresco/service/content.pdf
这样的网址
在Liferay中我想从此链接下载文件。
我试过了:
resourceResponse.setContentType("application/pdf");
resourceResponse.addProperty(HttpHeaders.CACHE_CONTROL, "max-age=3600, must-revalidate");
resourceResponse.addProperty(HttpHeaders.CONTENT_DISPOSITION,"filename=" + url);
OutputStream out = resourceResponse.getPortletOutputStream();