如何在java中创建新的excel文档

时间:2013-10-31 07:11:08

标签: java apache-poi struts1

这里我使用poi-jar从数据库导出数据以使其工作正常。但在这里我想改变而不是创建手动路径。我希望将其设置为自动下载而不创建任何手动路径:

OutputStream file = new FileOutputStream(new File("D:\\venki1213.xls"));

这是我的代码:

Session ses = HibernateUtil.getSessionFactory().openSession();
String query;
query = "from LibraryImportEntity ";
List<LibraryImportEntity> list = ses.createQuery(query).list();
ses.close();
System.out.println("list size" + list.size());
String filename = "D://ranjith//ranjith1213.xls";
OutputStream file = new FileOutputStream(new File("D:\\venki1213.xls"));
HSSFWorkbook hwb = new HSSFWorkbook();
HSSFSheet sheet = hwb.createSheet("new sheet");
HSSFRow rowhead = sheet.createRow((short) 0);
rowhead.createCell(0).setCellValue("Sl.No");
rowhead.createCell(1).setCellValue("Magazine Name");
rowhead.createCell(2).setCellValue("Volume No");
rowhead.createCell(3).setCellValue("Issue No");
rowhead.createCell(4).setCellValue("Cost");
int i = 1;
for (LibraryImportEntity l1 : list) {
    System.out.println("sl_no" + l1.getSl_no());
    System.out.println("Magazinename" + l1.getMagazinename());
    System.out.println("sl_no" + l1.getVolumeno());
    System.out.println("sl_no" + l1.getCost());
    HSSFRow row = sheet.createRow((short) i);
    row.createCell(0).setCellValue(l1.getSl_no());
    row.createCell(1).setCellValue(l1.getMagazinename());
    row.createCell(2).setCellValue(l1.getVolumeno());
    row.createCell(3).setCellValue(l1.getIssueno());
    row.createCell(4).setCellValue(l1.getCost());
    i++;
}
try {
    FileOutputStream fileOut = new FileOutputStream(filename);
    hwb.write(file);
    fileOut.close();
} catch (IOException ex) {
    Logger.getLogger(LibraryExportDAO.class.getName()).log(Level.SEVERE, null, ex);
}
System.out.println("Your excel file has been generated!");
return "success";
}

3 个答案:

答案 0 :(得分:3)

如果您在浏览器中生成excel,只需根据网址调用要生成excel文件的方法,并设置响应属性,如下所示

  //1.Fill the data from db

  //2.Set the response properties
  String fileName = "Excel.xls";
  response.setHeader("Content-Disposition", "inline; filename=" + fileName);
  // Make sure to set the correct content type(the below content type is ok)
  response.setContentType("application/vnd.ms-excel");

  //3.Write to the output stream
  Writer.write();//call write method of Writer class to write the data to o/p stream

作家类:

public class Writer {

     private static Logger logger = Logger.getLogger("service");
         /**
          * Writes the report to the output stream
          */
         public static void write(HttpServletResponse response, HSSFSheet worksheet) {

          logger.debug("Writing excel data to the stream");
              try {
                   // Retrieve the output stream
                   ServletOutputStream outputStream = response.getOutputStream();
                   // Write to the output stream
                   worksheet.getWorkbook().write(outputStream);
                   // Flush the stream
                   outputStream.flush();
              } 
              catch (Exception e) {
                  logger.error("Unable to write excel data to the output stream");
              }
     }
}

在响应接收端,系统会提示您在浏览器窗口中下载文件。 LINK

答案 1 :(得分:0)

而不是这段代码,

OutputStream file = new FileOutputStream(new File("D:\\venki1213.xls"));

使用,

OutputStream file = new FileOutputStream(new File("venki1213.xls"));

这将在项目文件夹中创建一个文件。

干杯......!

答案 2 :(得分:0)

您必须将文件写入回复

   ByteArrayOutputStream bos = null;

                        try {
                            File file = new File(filename);
                            FileInputStream fis = new FileInputStream(file);
                            bos = new ByteArrayOutputStream();
                            if (fis != null) {
                                byte[] buf = new byte[(int) file.length()];
                                for (int num; (num = fis.read(buf)) != -1;) {
                                    bos.write(buf, 0, num);
                                }
                            }
                            byte[] bytes = bos.toByteArray();
                            response.setContentType("application/vnd.ms-excel");
                            final OutputStream fileOutputStream = response.getOutputStream();
                            fileOutputStream.write(bytes);
                            fileOutputStream.flush();
                            fileOutputStream.close();
                        } catch (Exception e) {
                        }