jxls实现Excel文件导出

package net.chinaedu.projects.g3mini.common;


import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import net.sf.jxls.exception.ParsePropertyException;
import net.sf.jxls.transformer.XLSTransformer;

import org.apache.poi.openxml4j.exceptions.InvalidFormatException;
import org.apache.poi.ss.usermodel.Workbook;
import org.springframework.stereotype.Controller;
import org.springframework.util.FileCopyUtils;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;
@Controller
public class JxlsUtil {
	
	@SuppressWarnings("deprecation")
	@RequestMapping(value = "/system/downloadSchool.do")
	public ModelAndView downTeacherTemplate(HttpServletRequest request, HttpServletResponse response)
	{
		try
		{
			response.setCharacterEncoding("utf-8");
			response.setContentType("multipart/form-data");

			response.setHeader("Content-Disposition", "attachment;fileName=" + "school.xls"); //中文乱码
			/*String filePath = request.getRealPath("") + "/teacherTemplate/" + Constants.TEACHER_TEMPLATE;
			File templateFile = new File(filePath);
			InputStream in = new FileInputStream(templateFile);*/
			OutputStream os = response.getOutputStream();
			String templateFile=request.getRealPath("")+"/jxls_template.xls";
			Map<String, Object> beans=new HashMap<String, Object>();
			
			// fruits
			List<Map<String,String>> fruitList=new ArrayList<Map<String,String>>();
			
			Map<String,String> fruit=null;
			fruit=new HashMap<String, String>();
			fruit.put("name", "苹果");
			fruit.put("price", "100");
			fruitList.add(fruit);
			
			fruit=new HashMap<String, String>();
			fruit.put("name", "香蕉");
			fruit.put("price", "200");
			fruitList.add(fruit);
			
			beans.put("fruits",fruitList);
			exportExcel(templateFile, beans, os);
			//FileCopyUtils.copy(in, os);

			/*os.flush();
			os.close();

			in.close();*/
		}
		catch (Exception e)
		{
			e.printStackTrace();
		}

		return null;
	}
	/**
	 * 导出excel
	 * @param templateFile - excel模版名称
	 * @param beans - 模版中填充的数据
	 * @param os - 生成模版输出流
	 */
	public static void exportExcel(String templateFile,Map<String,Object> beans,OutputStream os) {
	     XLSTransformer transformer = new XLSTransformer();
	    // InputStream is=JxlsUtil.class.getClassLoader().getResourceAsStream(templateFile);
	     //String filePath = request.getRealPath("") + "/" +templateFile;
	     //InputStream is=new FileInputStream(templateFile);
	     
	     try {
	    	InputStream is=new FileInputStream(templateFile);
			Workbook workbook=transformer.transformXLS(is,beans);
			workbook.write(os);
		} catch (Exception e) {
			e.printStackTrace();
			//throw new RuntimeException("导出excel错误!");
		} 
	}
	
	public static void main(String[] args) throws ParsePropertyException, InvalidFormatException, IOException {
		OutputStream os=new FileOutputStream("F:/new.xls");
		String templateFile="F:/jxls_template.xls";
		Map<String, Object> beans=new HashMap<String, Object>();
		
		// fruits
		List<Map<String,String>> fruitList=new ArrayList<Map<String,String>>();
		
		Map<String,String> fruit=null;
		fruit=new HashMap<String, String>();
		fruit.put("name", "苹果");
		fruit.put("price", "100");
		fruitList.add(fruit);
		
		fruit=new HashMap<String, String>();
		fruit.put("name", "香蕉");
		fruit.put("price", "200");
		fruitList.add(fruit);
		
		beans.put("fruits",fruitList);
		exportExcel(templateFile, beans, os);
	}
}

 

  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值