15
डाउनलोड करें और Ajax का उपयोग करके पीडीएफ फाइल खोलें
मेरे पास एक एक्शन क्लास है जो एक पीडीएफ उत्पन्न करता है। 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"; …
98
javascript
java
jquery
pdf