前提・実現したいこと
お世話になります。
サーバサイド(Java / Struts 2)で生成したPDFをChromeで表示させようとすると、ダウンロードになってしまいます。
ダウンロードさせない要件のため、別タブでPDFが開くだけにしたいです。
Webapps 配下に配置したPDFを別タブで表示させるのは問題なくできるのですが、
生成したものを表示させるとどうしてもダウンロードになってしまいます。
画面の動きとしては、ボタンを押すと別タブで表示させる、という形になります。
サーバでは、PDFをJasperReportsで作成しています。
ソース
アクションクラス
java
1@Results({ 2 @Result(name = "pdf", type = "stream" 3 , params={ 4 "inputName", "inputStream", 5 "contentType", "application/octet-stream; charset=UTF-8", 6 "contentLength", "${ contentLength }", 7 "contentDisposition", "attachment; filename = ${fileName}", 8 "root", "model", 9 "ignoreHierarchy", "false" 10 }), 11}) 12public class PdfAction implements ModelDriven<PdfModel> { 13 14 @Getter 15 private PdfModel model = new PdfModel(); 16 17 public String fileName; 18 public long contentLength; 19 public InputStream inputStream; 20 21 public String execute() { 22 PdfService service = new PdfService(); 23 24 JasperPrint jrxmlFile = null; 25 try { 26 jrxmlFile = service.getPdf(model); 27 28 byte[] b = JasperExportManager.exportReportToPdf(jrxmlFile); 29 fileName = model.getFileName(); 30 this.inputStream = new ByteArrayInputStream(b); 31 contentLength = b.length; 32 } catch (Exception e) { 33 } 34 return "pdf"; 35 } 36}
サービスクラス
java
1public class PdfService { 2 3 /** 4 * 画像印刷用PDF出力 5 * @param model 6 * @throws Exception 7 */ 8 public JasperPrint getPdf(PdfModel model) throws Exception { 9 10 String jasperFilePath = "report/pdf.jasper"; 11 File imgFile = new File("test.jpg"); 12 13 HashMap<String, Object> params = new HashMap<String, Object>(); 14 ArrayList<HashMap<String,Object>> list = new ArrayList<HashMap<String,Object>>(); 15 HashMap<String,Object> map = new HashMap<String,Object>(); 16 map.put("image", imgFile.getAbsolutePath()); 17 list.add(map); 18 19 model.setFileName("image.pdf"); 20 String jasperReport = ServletActionContext.getServletContext().getRealPath("") + jasperFilePath; 21 22 JasperPrint pdf = JasperFillManager.fillReport(jasperReport, params, new JRBeanCollectionDataSource(list)); 23 return pdf; 24 } 25 26}
javascript
1//ダウンロードせず別タブで表示される 2window.open('http://localhost:8080/test/test.pdf'); 3 4//ダウンロードしてしまう 5window.open('http://localhost:8080/test/pdf.action');
上述のダウンロードせず~…の呼び方だと、test.pdfが別タブで表示されますが
ダウンロードしてしまう、と記載している方はおそらくStruts 2 での返し方に起因していると思いますが、
ダウンロードしてしまう状況です。
宜しくお願い致します。
補足情報(FW/ツールのバージョンなど)
Struts 2.5.5
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/11/18 07:14