java生成excel表格和pdf并实现下载弹出框

今天在pdf和excel中都实现了在浏览器弹出下载框
将之前在网上查找的生成excel表格代码稍微修改下:
public class CreateSimpleExcelToDisk {
 /**
  * @功能:手工构建一个简单格式的Excel
  */
 private static List<News> getNews() throws Exception
 {
  List<News> data = new ArrayList<News>();
  NewsDao dao = new NewsDao();
  ArrayList<News> list=dao.queryAll();
  SimpleDateFormat df = new SimpleDateFormat("yyyy-mm-dd");
  for(News news:list){
//	  News user1 = new News(news.getNewsId(),news.getTypeId(), news.getTitle(), news.getPublishTime(), news.getBody(),news.getTag(),news.getAuthor(),news.getClicks(),news.getImgUrl());
	  data.add(new News(news.getNewsId(),news.getTypeId(), news.getTitle(), news.getPublishTime(), news.getBody(),news.getTag(),news.getAuthor(),news.getClicks(),news.getImgUrl()));
  }
  return list;
 }
 public void ExpExcel(OutputStream out) throws Exception{

	  // 第一步,创建一个webbook,对应一个Excel文件
	  HSSFWorkbook wb = new HSSFWorkbook();
	  // 第二步,在webbook中添加一个sheet,对应Excel文件中的sheet
	  HSSFSheet sheet = wb.createSheet("Sheet1");
	  // 第三步,在sheet中添加表头第0行,注意老版本poi对Excel的行数列数有限制short
	  HSSFRow row = sheet.createRow((int) 0);
	  // 第四步,创建单元格,并设置值表头 设置表头居中
	  HSSFCellStyle style = wb.createCellStyle();
	  style.setAlignment(HSSFCellStyle.ALIGN_CENTER); // 创建一个居中格式
	  HSSFCell cell = row.createCell((short) 0);
	  // 设置编码格式
	  cell.setEncoding(HSSFCell.ENCODING_UTF_16);
	  cell.setCellValue("newsid");
	  cell.setCellStyle(style);
	  cell = row.createCell((short) 1);
	  // 设置编码格式
	  cell.setEncoding(HSSFCell.ENCODING_UTF_16);
	  cell.setCellValue("typeid");
	  cell.setCellStyle(style);
	  cell = row.createCell((short) 2);
	  // 设置编码格式
	  cell.setEncoding(HSSFCell.ENCODING_UTF_16);
	  cell.setCellValue("title");
	  HSSFCellStyle style2 = wb.createCellStyle();
	  style2.setAlignment(HSSFCellStyle.ALIGN_LEFT); // 创建一个居左格式
	  cell.setCellStyle(style2);
	  cell = row.createCell((short) 3);
	  // 设置编码格式
	  cell.setEncoding(HSSFCell.ENCODING_UTF_16);
	  cell.setCellValue("publishtime");
	  cell.setCellStyle(style);
	  cell = row.createCell((short) 4);
	  // 设置编码格式
	  cell.setEncoding(HSSFCell.ENCODING_UTF_16);
	  cell.setCellValue("body");
	  cell.setCellStyle(style);
	  cell = row.createCell((short) 5);
	  // 设置编码格式
	  cell.setEncoding(HSSFCell.ENCODING_UTF_16);
	  cell.setCellValue("tag");
	  cell.setCellStyle(style);
	  cell = row.createCell((short) 6);
	  // 设置编码格式
	  cell.setEncoding(HSSFCell.ENCODING_UTF_16);
	  cell.setCellValue("author");
	  cell.setCellStyle(style);
	  cell = row.createCell((short) 7);
	  // 设置编码格式
	  cell.setEncoding(HSSFCell.ENCODING_UTF_16);
	  cell.setCellValue("clicks");
	  cell.setCellStyle(style);
	  cell = row.createCell((short) 8);
	  // 设置编码格式主要是解决导出中文等的乱码
	  cell.setEncoding(HSSFCell.ENCODING_UTF_16);
	  cell.setCellValue("imgUrl");
	  cell.setCellStyle(style);
	  // 第五步,写入实体数据 实际应用中这些数据从数据库得到,
	  List list = CreateSimpleExcelToDisk.getNews();
	  for (int i = 0; i < list.size(); i++)
	  {
	   row = sheet.createRow((int) i + 1);
	   News news = (News) list.get(i);
	   // 第四步,创建单元格,并设置值
	   cell = row.createCell((short) 0);
	   // 设置编码格式
	   cell.setEncoding(HSSFCell.ENCODING_UTF_16);
	   cell.setCellValue(news.getNewsId());
	   cell.setCellStyle(style);
	   cell = row.createCell((short) 1);
	   // 设置编码格式
	   cell.setEncoding(HSSFCell.ENCODING_UTF_16);
	   cell.setCellValue(news.getTypeId());
	   cell.setCellStyle(style);
	   cell = row.createCell((short) 2);
	   // 设置编码格式
	   cell.setEncoding(HSSFCell.ENCODING_UTF_16);
	   cell.setCellValue(news.getTitle());
	   cell.setCellStyle(style);
	   cell = row.createCell((short) 3);
	   // 设置编码格式
	   cell.setEncoding(HSSFCell.ENCODING_UTF_16);
	   cell.setCellValue(news.getPublishTime());
	   cell.setCellStyle(style);
	   cell = row.createCell((short) 4);
	   // 设置编码格式
	   cell.setEncoding(HSSFCell.ENCODING_UTF_16);
	   cell.setCellValue(news.getBody());
	   cell.setCellStyle(style);
	   cell = row.createCell((short) 5);
	   // 设置编码格式
	   cell.setEncoding(HSSFCell.ENCODING_UTF_16);
	   cell.setCellValue(news.getTag());
	   cell.setCellStyle(style);
	   cell = row.createCell((short) 6);
	   // 设置编码格式
	   cell.setEncoding(HSSFCell.ENCODING_UTF_16);
	   cell.setCellValue(news.getAuthor());
	   cell.setCellStyle(style);
	   cell = row.createCell((short) 7);
	   // 设置编码格式
	   cell.setEncoding(HSSFCell.ENCODING_UTF_16);
	   cell.setCellValue(news.getClicks());
	   cell.setCellStyle(style);
	   cell = row.createCell((short) 8);
	   // 设置编码格式
	   cell.setEncoding(HSSFCell.ENCODING_UTF_16);
	   cell.setCellValue(news.getImgUrl());
	   cell.setCellStyle(style);
	   /*row.createCell((short) 0).setCellValue( news.getNewsId());
	   row.createCell((short) 1).setCellValue(news.getTypeId());
	   row.createCell((short) 2).setCellValue(news.getTitle());
	//   cell = row.createCell((short) 3);
	//   cell.setCellValue(new SimpleDateFormat("yyyy-mm-dd").format(news.getPublishTime()));
	   row.createCell((short) 3).setCellValue(news.getPublishTime());
	   row.createCell((short) 4).setCellValue(news.getBody());
	   row.createCell((short) 5).setCellValue(news.getTag());
	   row.createCell((short) 6).setCellValue(news.getAuthor());
	   row.createCell((short) 7).setCellValue(news.getClicks());
	   row.createCell((short) 8).setCellValue(news.getImgUrl());*/
	  }
	  // 第六步,将文件存到指定位置
	  try
	  {
//	   String outputFile = "E:/news.xls";
//	   FileOutputStream fout = new FileOutputStream(outputFile);//"E:/news.xls"
	   System.out.println("list="+list);
	   wb.write(out);
	   out.close();
	  }
	  catch (Exception e)
	  {
	   e.printStackTrace();
	  }
 }

}

用servlet实现下载:此代码可以套用
public class ExpExcelServlet extends HttpServlet {
	public void doGet(HttpServletRequest request, HttpServletResponse response)
			throws ServletException, IOException {
		String fileName = "news.et";
		response.setContentType("octets/stream");
		response.addHeader("Content-Disposition", "attachment;filename="
				+ URLEncoder.encode(fileName, "utf-8"));

		try {
			NewsDao dao = new NewsDao();
			ArrayList<News> list = dao.queryAll();
			CreateSimpleExcelToDisk ce=new CreateSimpleExcelToDisk();
					OutputStream out = response.getOutputStream();
				ce.ExpExcel(out);
				out.close();
			} catch (Exception e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}
			System.out.println("et导出成功!");
		} 

	public void doPost(HttpServletRequest request, HttpServletResponse response)
			throws ServletException, IOException {
		doGet(request,response);
	}

}

网上的资料

可以采用:
1、RequestDispatcher的方式进行;
2、采用文件流输出的方式下载。

1、采用RequestDispatcher的方式进行
            jsp页面中添加如下代码:
           <%
      response.setContentType("application/x-download");//设置为下载application/x-download
      String filedownload = "/要下载的文件名";//即将下载的文件的相对路径
      String filedisplay = "最终要显示给用户的保存文件名";//下载文件时显示的文件保存名称
      filenamedisplay = URLEncoder.encode(filedisplay,"UTF-8");
      response.addHeader("Content-Disposition","attachment;filename=" + filedisplay);

      try
      {
          RequestDispatcher dis = application.getRequestDispatcher(filedownload);
          if(dis!= null)
          {
              dis.forward(request,response);
          }
          response.flushBuffer();
      }
      catch(Exception e)
      {
          e.printStackTrace();
      }
      finally
      {

      }
%>
2、采用文件流输出的方式下载
         <%@page language="java" contentType="application/x-msdownload"    pageEncoding="gb2312"%><%
      //关于文件下载时采用文件流输出的方式处理:
      //加上response.reset(),并且所有的%>后面不要换行,包括最后一个;
      response.reset();//可以加也可以不加
      response.setContentType("application/x-download");
      String filedownload = "想办法找到要提供下载的文件的物理路径+文件名";
      String filedisplay = "给用户提供的下载文件名";
      filedisplay = URLEncoder.encode(filedisplay,"UTF-8");
      response.addHeader("Content-Disposition","attachment;filename=" + filedisplay);
      OutputStream outp = null;
      FileInputStream in = null;
      try
      {
          outp = response.getOutputStream();
          in = new FileInputStream(filenamedownload);
          byte[] b = new byte[1024];
          int i = 0;
          while((i = in.read(b)) > 0)
          {
              outp.write(b, 0, i);
          }
          outp.flush();
      }
      catch(Exception e)
      {
          System.out.println("Error!");
          e.printStackTrace();
      }
      finally
      {
          if(in != null)
          {
              in.close();
              in = null;
          }
          if(outp != null)
          {
              outp.close();
              outp = null;
          }
      }
%>
在wsad里面写JSP文件下载,总是出现这个异常,getOutputStream() has already been called for this response,输出流已经被调用了.
      上网查半天终于明白一点,JSP早下载文件的时候用到了OutputStream,而在Application Server在处理编译jsp时对于%>和<%之间的内容一般是原样输出,而且默认是PrintWriter.

java生成excel表格和pdf并实现下载弹出框

时间: 2024-10-16 18:06:36

java生成excel表格和pdf并实现下载弹出框的相关文章

Java生成Excel表格的代码

1. 我们先定义这三个类 DataItem类,表示一个单元格内的数字 package com.tntxia.pem.entity; public class DataItem { private String value; private String dataType; private String cellStyle=""; public String getCellStyle() { return cellStyle; } public void setCellStyle(Str

java对excel表格的上传和下载处理

Excel表格文件的上传和下载,java中涉及到文件肯定会有io流的知识. 而excel文件就要涉及到poi技术,而excel的版本包括:2003-2007和2010两个版本, 即excel的后缀名为:xls和xlsx. 这里我是按照正规的项目流程做的案例,所以可能会比网上的一些Demo复杂一些.不过文件的上传和下载基本都是一套固定的流程,只是每个人的实现方式不太相同. 数据库我用的是MySql. 下面是我的项目目录: 按照正常的项目做了分层处理,文件上传的业务我放到了service处理,而文件

【PHP】PHP使用PHPExcel生成Excel表格文件(附带随机生成英文名函数)

[PHP]PHP使用PHPExcel生成Excel表格文件(附带随机生成英文名函数) 前言 由于业务需要,我们需要从业务中汇总数据,并生成Excel文件. 思路是这样的 PHP要导出Excel表格文件->找一个好用的第三方库吧->在Composer的Packages里找一个吧->PHPExcel这么多收藏,就它了! PHPExcel 概述 PHPExcel is a library written in pure PHP and providing a set of classes th

Java -&gt; 把Excel表格中的数据写入数据库与从数据库中读出到本地 (未完善)

写入: private void insertFile(HttpServletRequest request, HttpServletResponse response) throws IOException { String path_member = request.getParameter("path_member"); List list = this.insert("f:/tmp001.xls", "gs_sale_members");

Java读取excel表格

Java读取excel表格 一般都是用poi技术去读取excel表格的,但是这个技术又是什么呢 什么是Apache POI? Apache POI是一种流行的API,它允许程序员使用Java程序创建,修改和显示MS Office文件.这由Apache软件基金会开发使用Java分布式设计或修改Microsoft Office文件的开源库.它包含类和方法对用户输入数据或文件到MS Office文档进行解码. Apache POI Apache POI是Apache软件基金会提供的100%开源库.大多

nodejs实现,每天定时自动读取数据库数据-生成excel表格-发送给老板邮箱(promise版)

async版:http://blog.csdn.net/zzwwjjdj1/article/details/52129192 写这个版本主要是,promise比较好用,而且,现在已经是nodejs的内置对象了,无须再引用第三方库 -- 需要的工具 数据库    mysql 连接数据库模块 mysql  基本封装: http://blog.csdn.net/zzwwjjdj1/article/details/51991348 自动运行模块   node-schedule 基本使用 : http:/

java生成excel文件工具类实例

import java.io.File; import java.io.IOException; import jxl.Workbook; import jxl.write.Label; import jxl.write.WritableSheet; import jxl.write.WritableWorkbook; import jxl.write.WriteException; import jxl.write.biff.RowsExceededException; import org.

导出excel——弹出框

表单提交 凡是表单提交(表单提交分3种,见下面的1.2.3)的话,并且设置了表单标签的enctype="multipart/form-data"属性,那么这个时候就会打开弹出框. 1.表单提交 2.js表单提交 3.jquery.extjs等等其他的表单提交 代码示例 //jsp代码 <s:form id="myform1" method="post" enctype="multipart/form-data">

自设table表格,获取内容,并经弹出框的url传参,获取结果显示在弹出框,并加载合计

table表格,选择框 form id="editForm1"> <table class="table_form"> <td >经济性质:</td> <td > <input width="150" type="text" id="nature_id" readonly onclick="show_nature()">