0

現在、Webアプリケーションを作成しようとしています。私の仕事は簡単です。動的にExcelファイルを作成し、クライアントがこのファイルをダウンロードするためのリンクを作成しています。私は vaadin 6.8.9 と google app エンジンを使用しています。コードをローカルでテストすると、すべて正常に動作し、ファイルをダウンロードできますが、コードを Google アプリ エンジンにデプロイすると、ブラウザーで Excel ファイルを開こうとします。修正するのを手伝ってください。考えられるすべての解決策を試しましたが、うまくいきませんでした。

または、アプリケーション クラスではない vaadin クラスで HttpServletRequestListener をリッスンする方法を誰でも教えてくれます。Content-disposition を設定し、ファイルを書き込みます。

デプロイされたコードのリンクは 次のとおりです。 http://vaadingo.appspot.com/

ここに私のコードがあります、

            ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
            WritableWorkbook workBook;
            try {
                workBook = Workbook.createWorkbook(outputStream);
                WritableSheet sheet = workBook.createSheet("User List", 0);

                // Generates Headers Cells
                WritableFont headerFont = new WritableFont(WritableFont.TAHOMA, 12, WritableFont.BOLD);
                WritableCellFormat headerCellFormat = new WritableCellFormat(headerFont);
                try {
                    headerCellFormat.setBackground(Colour.PALE_BLUE);
                } catch (WriteException e1) {
                    // TODO Auto-generated catch block
                    e1.printStackTrace();
                }
                try {
                    sheet.addCell(new jxl.write.Label(1, 1, "LastName", headerCellFormat));
                    sheet.addCell(new jxl.write.Label(2, 1, "FirstName", headerCellFormat));
                    WritableFont dataFont = new WritableFont(WritableFont.TAHOMA, 12);
                    WritableCellFormat dataCellFormat = new WritableCellFormat(dataFont);
                    sheet.addCell(new jxl.write.Label(1, 2, "last", dataCellFormat));
                    sheet.addCell(new jxl.write.Label(2, 2, "first", dataCellFormat));
                    try {
                        workBook.write();
                        workBook.close();
                    } catch (IOException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                    }

                } catch (RowsExceededException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                } catch (WriteException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }

                final ByteArrayInputStream in = new ByteArrayInputStream(outputStream.toByteArray());


                 StreamSource source = new StreamSource() {

                    public InputStream getStream() {
                        // TODO Auto-generated method stub

                        return in;
                    }
                };

                String namefile = "deneme.xls";
                StreamResource resource = new StreamResource(source, namefile, getApplication());

                resource.getStream().setParameter("Content-Disposition", "attachment; filename=\"" + namefile + "\"");
                resource.setMIMEType("application/vnd.ms-excel");
                resource.setCacheTime(-1);
                Link link = new Link();
                link.setCaption("dosya");
                link.setResource(resource);
                link.setTargetName("_blank");
                mainLayout.addComponent(link);
4

2 に答える 2

2

応答に content-disposition ヘッダーを追加してみてください。

Content-Disposition: attachment
于 2013-06-09T13:41:50.377 に答える