15
Завантажте та відкрийте файл PDF за допомогою Ajax
У мене є клас дій, який генерує 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; } } Я називаю це …
98
javascript
java
jquery
pdf