you yamamoto
youy7****@gmail*****
2011年 8月 25日 (木) 17:08:49 JST
yigaさん。 山本です。 下記ソース、参考にさせていただいたら、例外なく表示できました。 ありがとうございました。 ----------------------------------------------------------------------------------------------------- File outputFile = new File("XXXXXX.pdf"); IResourceStream stream = new FileResourceStream(outputFile); // responseを取得 WebResponse response = (WebResponse) getResponse(); // ヘッダー設定 response.setContentType("application/pdf"); response.setHeader("Content-Disposition", "inline"); getRequestCycle().setRequestTarget(new ResourceStreamRequestTarget(stream)); ----------------------------------------------------------------------------------------------------- 以上、よろしくお願いします。 2011年8月25日16:24 yiga-way <yiga-****@bushy*****>: > 山本さん、 > > yigaです。 > > それは失礼しました。 > かわりにといっては何ですが手元のWicketアプリケーションで以下のコードを作成し試したところ、例外なくPDFが表示されました。 > (StatelesLinkのOnclick内ですが) > > ------- > byte[] b = ファイルからバイト配列取得 > ((WebResponse)getResponse()).setHeader("Content-Disposition", > "inline"); > getRequestCycle().setRequestTarget(new ResourceStreamRequestTarget( > new ByteArrayResource("application/pdf", b).getResourceStream())); > ------- > > ご参考になればと思います。 > > yiga > > On Thu, 25 Aug 2011 16:10:03 +0900, you yamamoto wrote: > > yigaさん > > > > 山本です。お返事ありがとうございます。 > > > > 実は、まさに、下記過去ログの中で参考にできるコードがあったので、 > > > > それを流用し、実装して実行したところ、 > > 例外がおこってしまったのです。。。 > > > > 以上、よろしくお願いします。 > > > > 2011年8月25日16:02 yiga-way : > > > >> 山本さん、 > >> > >> お初になります、yigaと申します。 > >> > >> Wicket-jaのMLの過去ログに似たお話がありました。 > >> > > やり取りの趣旨は違いますが、実装方法は参考になるかと思います。 > >> > >> > > > > > http://sourceforge.jp/projects/wicket-ja/lists/archive/user/2009-September/000374.html > >> [1] > >> > >> On Thu, 25 Aug 2011 15:39:31 +0900, you yamamoto wrote: > >>> 金谷さん。 > >>> > >>> 山本です。早速のお返事ありがとうございます。 > >>> > >>> 例外の理由はなんとな〜くわかりました。 > >>> > >> > > が、どこをどうしたらよいのかわからなくて困っていますが。。。 > >>> > >>> > >> > > >> > > 金谷さんが書かれた方法でやってみたこともあるのですが、 > >>> > >>> > >> > > それだとページ遷移ではなくダウンロードのダイアログがでません? > >>> > >>> > >>> > >> > > ダイアログを出さないで、ページとしてPDFを表示したいのです。(印刷のために。) > >>> > >>> 以上、よろしくお願いします。 > >>> > >>> 2011年8月25日15:16 Atsushi Kanaya : > >> > >>> > >>>> 山本さん > >>>> > >>>> 金谷です。 > >>>> > >>> > >> > > リダイレクト先を出力するレスポンスを出力完了しているにも関わらず > >>>> > >>> > >> > > 更にPDFも出力しようとしているためエラーが出ているのかと思います。 > >>>> > >>>> > >>> > >> > > 私の手元の実装ではこんな感じのことをやっていました。 > >> >> ご参考になれば幸いです。 > >>>> > >>>> getRequestCycle().setRedirect(true); > >>>> getRequestCycle().setRequestTarget(new > >>>> ResourceStreamRequestTarget(new > >>>> AbstractResourceStreamWriter() { > >> >> public String getContentType() { > >>>> return "application/pdf"; > >>>> } > >>>> public void write(OutputStream out) { > >>>> //ダウンロード処理 > >>>> } > >>>> }, "hoge.pdf")); > >> >> > >>>> 以上、よろしくお願いします。 > >>>> > >>>> 2011年8月25日14:29 you yamamoto : > >> > >>>> > >>>>> はじめまして。山本と申します。 > >>>>> > >>>>> > >>>> > >>> > >> > > 動的に作ったPDFをダウンロードではなく、表示させたいのですが、 > >>>>> > >>>> > >>> > >> > > なかなかうまくいかないので、質問させてください。 > >>>>> > >> >>> > >>>> > >>> > >> > > ここのメーリングリストの過去の投稿を参考にして、 > >>>>> > >>>> > >>> > >> > > 以下のようにつくってみたら、PDFを表示することはできたのですが、 > >>>>> > >>>> > >>> > >> > > なんか例外が発生してしまっているので、困っています。 > >>>> > > >>>> > >> > > >> > > 例外を回避する方法をご存知な方がいらっしゃればおしえてください。 > >>>>> > >>>> > >>> > >> > > また、以下の方法よりもいい方法があれば、ご教授くださればとおもいます。 > >>>>> > >>>>> Page.html抜粋 > >>>>> ------------------------------------ > >>>>> > >> >>> > >>>> > > >> > >>>>> ------------------------------------ > >>>>> > >>>>> Page.java抜粋(コンストラクタの部分) > >>>>> ------------------------------------ > >>>>> > >>>>> Button printLink = new Button("printLink"){ > >> >>> private static final long serialVersionUID = 1L; > >>>> > @Override > >>>>> public void onSubmit() { > >>>>> > >>>> > >>> > >> > > //動的に作ったPDFがaiueo.pdfというファイル名だとします。 > >>>>> IResourceStream stream = new FileResourceStream(new > >> >>> File("aiueo.pdf")); > >>>>> // responseを取得 > >>>> > WebResponse response = (WebResponse) getResponse(); > >>>>> // ヘッダー設定 > >>>>> response.setContentType("application/pdf"); > >> >>> response.setHeader("Content-Disposition", "inline"); > >>>> > // responseのOutputStreamにPDFのStreamをセット > >>>>> try { > >>>>> OutputStream os = response.getOutputStream(); > >> >>> InputStream in = stream.getInputStream(); > >>>>> int iData = 0; > >>>> > while ((iData = in.read()) != -1) { > >>>>> os.write(iData); > >>>>> } > >>>>> os.close(); > >> >>> in.close(); > >>>>> }catch (Exception e) { > >>>> > throw new RuntimeException(e); > >>>>> } > >>>>> //responseをセット > >>>>> setHeaders(response); > >>>>> } > >>>>> }; > >> >>> form1.add(printLink); > >>>>> this.add(form1); > >>>>> > >>>> > ------------------------------------ > >>>>> > >>>>> 発生する例外 > >>>>> ------------------------------------ > >> >>> org.apache.wicket.protocol.http.WebResponse redirect > >>>>> 致命的: Unable to redirect to: ?wicket:interface=:6::::, HTTP > >>>> Response has > >>>> > already been committed. > >>>>> org.apache.wicket.protocol.http.WicketFilter doGet > >> >>> 致命的: closing the buffer error > >>>>> java.lang.IllegalStateException > >>>>> at > >>>>> > >>>> > >>> > >>> > >> > > > > > org.apache.catalina.connector.ResponseFacade.sendRedirect(ResponseFacade.java:473) > >> >> > at > >>>>> > >>>> > >>> > >>> > >> > > > > > org.apache.wicket.protocol.http.WebResponse.sendRedirect(WebResponse.java:299) > >>>>> at > >>>>> > >>>> > >>> > >>> > >> > > > > > org.apache.wicket.protocol.http.WebResponse.redirect(WebResponse.java:250) > >> >>> at > >>>>> > >>>> > >>> > >>> > >> > > > > > org.apache.wicket.protocol.http.BufferedWebResponse.close(BufferedWebResponse.java:67) > >>>> > ------------------------------------ > >>>>> > >>>>> 環境 > >> >>> ------------------------------------ > >>>>> tomcat7 > >>>>> JDK 1.6 > >>>>> Wicket 1.4.18 > >>>>> ------------------------------------ > >>>>> > >>>>> 以上、よろしくお願いします。 > >> >> > > >>>>> _______________________________________________ > >>>>> Wicket-ja-user mailing list > >>>>> Wicke****@lists***** [2] [2] > >> >>> http://lists.sourceforge.jp/mailman/listinfo/wicket-ja-user [3] > >> [3] > >> > >>>> > > >>>>> > >>>> > >>>> _______________________________________________ > >>>> Wicket-ja-user mailing list > >>>> Wicke****@lists***** [4] [4] > >> >> http://lists.sourceforge.jp/mailman/listinfo/wicket-ja-user [5] > >> [5] > >>> > >>> > >>> > >>> Links: > >>> ------ > >>> [1] mailto:youy7****@gmail***** [6] > >> > [2] mailto:Wicke****@lists***** [7] > >>> [3] http://lists.sourceforge.jp/mailman/listinfo/wicket-ja-user > >> [8] > >> > [4] mailto:Wicke****@lists***** [9] > >>> [5] http://lists.sourceforge.jp/mailman/listinfo/wicket-ja-user > >> [10] > >> > [6] mailto:todoa****@gmail***** [11] > >> > >> _______________________________________________ > >> Wicket-ja-user mailing list > >> Wicke****@lists***** [12] > >> http://lists.sourceforge.jp/mailman/listinfo/wicket-ja-user [13] > > > > > > > > Links: > > ------ > > [1] > > > > > http://sourceforge.jp/projects/wicket-ja/lists/archive/user/2009-September/000374.html > > [2] mailto:Wicke****@lists***** > > [3] http://lists.sourceforge.jp/mailman/listinfo/wicket-ja-user > > [4] mailto:Wicke****@lists***** > > [5] http://lists.sourceforge.jp/mailman/listinfo/wicket-ja-user > > [6] mailto:youy7****@gmail***** > > [7] mailto:Wicke****@lists***** > > [8] http://lists.sourceforge.jp/mailman/listinfo/wicket-ja-user > > [9] mailto:Wicke****@lists***** > > [10] http://lists.sourceforge.jp/mailman/listinfo/wicket-ja-user > > [11] mailto:todoa****@gmail***** > > [12] mailto:Wicke****@lists***** > > [13] http://lists.sourceforge.jp/mailman/listinfo/wicket-ja-user > > [14] mailto:yiga-****@bushy***** > > _______________________________________________ > Wicket-ja-user mailing list > Wicke****@lists***** > http://lists.sourceforge.jp/mailman/listinfo/wicket-ja-user > -------------- next part -------------- HTMLの添付ファイルを保管しました... Download