我目前正在尝试创建一个Web应用程序。我的任务很简单,我正在动态创建一个excel文件,并为客户端创建一个下载此文件的链接。我正在使用vaadin 6.8.9和谷歌应用程序引擎。当我在本地测试代码时,一切正常,我可以下载文件但是当我将代码部署到谷歌应用程序引擎时,它会尝试在浏览器中打开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);
答案 0 :(得分:2)
尝试在回复中添加内容处置标头:
Content-Disposition: attachment
答案 1 :(得分:0)
也许这不是答案,但你可以在浏览器中设置是否应该打开或下载一些哑剧 - 它也决定了会发生什么。
检查HTTP响应。 1.(Ctrl + Shift + J)使用chrome - >检查 - >网络 2.下载文件 3.使用铬 - >检查 - >网络 - >文件名 - >标题/响应(如果没有设置,请查看设置的标题尝试解决它或向GAE报告错误)。