15
Ajax kullanarak PDF dosyasını indirin ve açın
PDF oluşturan bir eylem sınıfım var. contentTypeUygun şekilde ayarlanır. 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; } } Bunu action bir Ajax aramasıyla arıyorum. …
101
javascript
java
jquery
pdf