15
Tải xuống và mở tệp PDF bằng Ajax
Tôi có một lớp hành động tạo tệp PDF. Các contentTypeđược thiết lập một cách thích hợp. 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; …
98
javascript
java
jquery
pdf