15
Baixe e abra o arquivo PDF usando Ajax
Tenho uma classe de ação que gera um PDF. O contentTypeestá definido corretamente. 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; } } Eu chamo …
98
javascript
java
jquery
pdf