将poi工作簿写入输出流正在产生奇怪的值

use*_*099 6 servlets apache-poi

我的目标是创建一个Excel文件供用户通过apache poi下载.

我在我的servlet中有这个代码:

protected void doGet(HttpServletRequest request, 
              HttpServletResponse response) throws ServletException, IOException 
      {

            // create a workbook , worksheet
            Workbook wb = new HSSFWorkbook();
            Sheet sheet = wb.createSheet("MySheet");
            CreationHelper createHelper = wb.getCreationHelper();

            // Create a row and put some cells in it. Rows are 0 based.
            Row row = sheet.createRow((short)0);
            Cell cell = row.createCell(0);
            cell.setCellValue(1);
            row.createCell(1).setCellValue(1.2);
            row.createCell(2).setCellValue( createHelper.createRichTextString("This is a string") );
            row.createCell(3).setCellValue(true);

            //write workbook to outputstream
            ServletOutputStream out = response.getOutputStream();
            wb.write(out);
            out.flush();
            out.close();

            //offer the user the option of opening or downloading the resulting Excel file
            response.setContentType("application/vnd.ms-excel");
            response.setHeader("Content-Disposition", "attachment; filename=MyExcel.xls");
Run Code Online (Sandbox Code Playgroud)

问题是我得到了这些奇怪的值:

`... MySheetŒ®üÿ»ÌÁwdü©ñÒMbP?*+,€%ÿÁƒ"¡"d ,,à?à?

有什么建议?

use*_*099 7

发现什么是错的.首先必须先设置HttpServletResponse

//offer the user the option of opening or downloading the resulting Excel file
        response.setContentType("application/vnd.ms-excel");
        response.setHeader("Content-Disposition", "attachment; filename=MyExcel.xls");
Run Code Online (Sandbox Code Playgroud)