15
使用Ajax下载并打开PDF文件
我有一个生成PDF的动作类。该contentType适当地设定。 public class MyAction extends ActionSupport { public String execute() { ... ... File report = signedPdfExporter.generateReport(xyzData, props); inputStream = new FileInputStream(report); contentDisposition = "attachment=\"" + report.getName() + "\""; contentType = "application/pdf"; return SUCCESS; } } 我action 通过Ajax调用来称呼它。我不知道将流传输到浏览器的方法。我尝试了几件事,但没有任何效果。 $.ajax({ type: "POST", url: url, data: wireIdList, cache: false, success: function(response) { …
98
javascript
java
jquery
pdf