POI导出EXCEL经典实现(附带jar包)

  在web开发中,有一个经典的功能,就是数据的导入导出。特别是数据的导出,在生产管理或者财务系统中用的非常普遍,因为这些系统经常要做一些报表打印的工作。而数据导出的格式一般是EXCEL或者PDF,我这里就用两篇文章分别给大家介绍下。(注意,我们这里说的数据导出可不是数据库中的数据导出!么误会啦^_^)
 

  呵呵,首先我们来导出EXCEL格式的文件吧。现在主流的操作Excel文件的开源工具有很多,用得比较多的就是Apache的POI及JExcelAPI。这里我们用Apache POI!我们先去Apache的大本营下载POI的jar包:http://poi.apache.org/ ,我这里使用的是3.0.2版本。
 

  将3个jar包导入到classpath下,什么?忘了怎么导包?不会吧!好,我们来写一个导出Excel的实用类(所谓实用,是指基本不用怎么修改就可以在实际项目中直接使用的!)。我一直强调做类也好,做方法也好,一定要通用性和灵活性强。下面这个类就算基本贯彻了我的这种思想。那么,熟悉许老师风格的人应该知道,这时候该要甩出一长串代码了。没错,大伙请看:

 

[java]  view plain copy print ?
  1. package com.j.bean;  
  2.   
  3. public class Book {  
  4.   
  5.     private int bookId;  
  6.     private String name;  
  7.     private String author;  
  8.     private float price;  
  9.     private String isbn;  
  10.     private String pubName;  
  11.     private byte[] preface;  
  12.   
  13.     public Book() {  
  14.         super();  
  15.     }  
  16.   
  17.     public Book(int bookId, String name, String author, float price,  
  18.             String isbn, String pubName, byte[] preface) {  
  19.   
  20.         super();  
  21.         this.bookId = bookId;  
  22.         this.name = name;  
  23.         this.author = author;  
  24.         this.price = price;  
  25.         this.isbn = isbn;  
  26.         this.pubName = pubName;  
  27.         this.preface = preface;  
  28.     }  
  29.   
  30.     public int getBookId() {  
  31.         return bookId;  
  32.     }  
  33.   
  34.     public void setBookId(int bookId) {  
  35.         this.bookId = bookId;  
  36.     }  
  37.   
  38.     public String getName() {  
  39.         return name;  
  40.     }  
  41.   
  42.     public void setName(String name) {  
  43.         this.name = name;  
  44.     }  
  45.   
  46.     public String getAuthor() {  
  47.         return author;  
  48.     }  
  49.   
  50.     public void setAuthor(String author) {  
  51.         this.author = author;  
  52.     }  
  53.   
  54.     public float getPrice() {  
  55.         return price;  
  56.     }  
  57.   
  58.     public void setPrice(float price) {  
  59.         this.price = price;  
  60.     }  
  61.   
  62.     public String getIsbn() {  
  63.         return isbn;  
  64.     }  
  65.   
  66.     public void setIsbn(String isbn) {  
  67.         this.isbn = isbn;  
  68.     }  
  69.   
  70.     public String getPubName() {  
  71.         return pubName;  
  72.     }  
  73.   
  74.     public void setPubName(String pubName) {  
  75.         this.pubName = pubName;  
  76.     }  
  77.   
  78.     public byte[] getPreface() {  
  79.         return preface;  
  80.     }  
  81.   
  82.     public void setPreface(byte[] preface) {  
  83.         this.preface = preface;  
  84.     }  
  85.   
  86. }  
  87.   
  88.   
  89.   
  90. package com.j.bean;  
  91.   
  92. import java.util.Date;  
  93.   
  94. public class Student {  
  95.   
  96.     private long id;  
  97.     private String name;  
  98.     private int age;  
  99.     private boolean sex;  
  100.     private Date birthday;  
  101.   
  102.     public Student() {  
  103.         super();  
  104.     }  
  105.   
  106.     public Student(long id, String name, int age, boolean sex, Date birthday) {  
  107.         super();  
  108.         this.id = id;  
  109.         this.name = name;  
  110.         this.age = age;  
  111.         this.sex = sex;  
  112.         this.birthday = birthday;  
  113.     }  
  114.   
  115.     public long getId() {  
  116.         return id;  
  117.     }  
  118.   
  119.     public void setId(long id) {  
  120.         this.id = id;  
  121.     }  
  122.   
  123.     public String getName() {  
  124.         return name;  
  125.     }  
  126.   
  127.     public void setName(String name) {  
  128.         this.name = name;  
  129.     }  
  130.   
  131.     public int getAge() {  
  132.         return age;  
  133.     }  
  134.   
  135.     public void setAge(int age) {  
  136.         this.age = age;  
  137.     }  
  138.   
  139.     public boolean getSex() {  
  140.         return sex;  
  141.     }  
  142.   
  143.     public void setSex(boolean sex) {  
  144.         this.sex = sex;  
  145.     }  
  146.   
  147.     public Date getBirthday() {  
  148.         return birthday;  
  149.     }  
  150.   
  151.     public void setBirthday(Date birthday) {  
  152.         this.birthday = birthday;  
  153.     }  
  154.   
  155. }  

 

 

上面这两个类一目了然,就是两个简单的javabean风格的类。再看下面真正的重点类:

 

[java]  view plain copy print ?
  1. package com.j.util;  
  2.   
  3. import java.io.BufferedInputStream;  
  4. import java.io.FileInputStream;  
  5. import java.io.FileNotFoundException;  
  6. import java.io.FileOutputStream;  
  7. import java.io.IOException;  
  8. import java.io.OutputStream;  
  9. import java.lang.reflect.Field;  
  10. import java.lang.reflect.InvocationTargetException;  
  11. import java.lang.reflect.Method;  
  12. import java.text.SimpleDateFormat;  
  13. import java.util.ArrayList;  
  14. import java.util.Collection;  
  15. import java.util.Date;  
  16. import java.util.Iterator;  
  17. import java.util.List;  
  18. import java.util.regex.Matcher;  
  19. import java.util.regex.Pattern;  
  20.   
  21. import javax.swing.JOptionPane;  
  22.   
  23. import org.apache.poi.hssf.usermodel.HSSFCell;  
  24. import org.apache.poi.hssf.usermodel.HSSFCellStyle;  
  25. import org.apache.poi.hssf.usermodel.HSSFClientAnchor;  
  26. import org.apache.poi.hssf.usermodel.HSSFComment;  
  27. import org.apache.poi.hssf.usermodel.HSSFFont;  
  28. import org.apache.poi.hssf.usermodel.HSSFPatriarch;  
  29. import org.apache.poi.hssf.usermodel.HSSFRichTextString;  
  30. import org.apache.poi.hssf.usermodel.HSSFRow;  
  31. import org.apache.poi.hssf.usermodel.HSSFSheet;  
  32. import org.apache.poi.hssf.usermodel.HSSFWorkbook;  
  33. import org.apache.poi.hssf.util.HSSFColor;  
  34.   
  35. import com.j.bean.Book;  
  36. import com.j.bean.Student;  
  37.   
  38.   
  39. public class ExportExcel<T> {  
  40.       
  41.     public void exportExcel(Collection<T> dataset, OutputStream out) {  
  42.           exportExcel("测试POI导出EXCEL文档"null, dataset, out, "yyyy-MM-dd");  
  43.        }  
  44.        
  45.   
  46.        public void exportExcel(String[] headers, Collection<T> dataset,  
  47.              OutputStream out) {  
  48.           exportExcel("测试POI导出EXCEL文档", headers, dataset, out, "yyyy-MM-dd");  
  49.        }  
  50.        
  51.   
  52.        public void exportExcel(String[] headers, Collection<T> dataset,  
  53.              OutputStream out, String pattern) {  
  54.           exportExcel("测试POI导出EXCEL文档", headers, dataset, out, pattern);  
  55.        }  
  56.        
  57.   
  58.        /** 
  59.         * 这是一个通用的方法,利用了JAVA的反射机制,可以将放置在JAVA集合中并且符号一定条件的数据以EXCEL 的形式输出到指定IO设备上 
  60.         *  
  61.         * @param title 
  62.         *            表格标题名 
  63.         * @param headers 
  64.         *            表格属性列名数组 
  65.         * @param dataset 
  66.         *            需要显示的数据集合,集合中一定要放置符合javabean风格的类的对象。此方法支持的 
  67.         *            javabean属性的数据类型有基本数据类型及String,Date,byte[](图片数据) 
  68.         * @param out 
  69.         *            与输出设备关联的流对象,可以将EXCEL文档导出到本地文件或者网络中 
  70.         * @param pattern 
  71.         *            如果有时间数据,设定输出格式。默认为"yyy-MM-dd" 
  72.         */  
  73.        @SuppressWarnings("unchecked")  
  74.        public void exportExcel(String title, String[] headers,  
  75.              Collection<T> dataset, OutputStream out, String pattern) {  
  76.           // 声明一个工作薄  
  77.           HSSFWorkbook workbook = new HSSFWorkbook();  
  78.           // 生成一个表格  
  79.           HSSFSheet sheet = workbook.createSheet(title);  
  80.           // 设置表格默认列宽度为15个字节  
  81.           sheet.setDefaultColumnWidth((short15);  
  82.           // 生成一个样式  
  83.           HSSFCellStyle style = workbook.createCellStyle();  
  84.           // 设置这些样式  
  85.           style.setFillForegroundColor(HSSFColor.SKY_BLUE.index);  
  86.           style.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);  
  87.           style.setBorderBottom(HSSFCellStyle.BORDER_THIN);  
  88.           style.setBorderLeft(HSSFCellStyle.BORDER_THIN);  
  89.           style.setBorderRight(HSSFCellStyle.BORDER_THIN);  
  90.           style.setBorderTop(HSSFCellStyle.BORDER_THIN);  
  91.           style.setAlignment(HSSFCellStyle.ALIGN_CENTER);  
  92.           // 生成一个字体  
  93.           HSSFFont font = workbook.createFont();  
  94.           font.setColor(HSSFColor.VIOLET.index);  
  95.           font.setFontHeightInPoints((short12);  
  96.           font.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);  
  97.           // 把字体应用到当前的样式  
  98.           style.setFont(font);  
  99.           // 生成并设置另一个样式  
  100.           HSSFCellStyle style2 = workbook.createCellStyle();  
  101.           style2.setFillForegroundColor(HSSFColor.LIGHT_YELLOW.index);  
  102.           style2.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);  
  103.           style2.setBorderBottom(HSSFCellStyle.BORDER_THIN);  
  104.           style2.setBorderLeft(HSSFCellStyle.BORDER_THIN);  
  105.           style2.setBorderRight(HSSFCellStyle.BORDER_THIN);  
  106.           style2.setBorderTop(HSSFCellStyle.BORDER_THIN);  
  107.           style2.setAlignment(HSSFCellStyle.ALIGN_CENTER);  
  108.           style2.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);  
  109.           // 生成另一个字体  
  110.           HSSFFont font2 = workbook.createFont();  
  111.           font2.setBoldweight(HSSFFont.BOLDWEIGHT_NORMAL);  
  112.           // 把字体应用到当前的样式  
  113.           style2.setFont(font2);  
  114.             
  115.           // 声明一个画图的顶级管理器  
  116.           HSSFPatriarch patriarch = sheet.createDrawingPatriarch();  
  117.           // 定义注释的大小和位置,详见文档  
  118.           HSSFComment comment = patriarch.createComment(new HSSFClientAnchor(0000, (short42, (short65));  
  119.           // 设置注释内容  
  120.           comment.setString(new HSSFRichTextString("可以在POI中添加注释!"));  
  121.           // 设置注释作者,当鼠标移动到单元格上是可以在状态栏中看到该内容.  
  122.           comment.setAuthor("leno");  
  123.        
  124.   
  125.           //产生表格标题行  
  126.           HSSFRow row = sheet.createRow(0);  
  127.           for (short i = 0; i < headers.length; i++) {  
  128.              HSSFCell cell = row.createCell(i);  
  129.              cell.setCellStyle(style);  
  130.              HSSFRichTextString text = new HSSFRichTextString(headers[i]);  
  131.              cell.setCellValue(text);  
  132.           }  
  133.        
  134.   
  135.           //遍历集合数据,产生数据行  
  136.           Iterator<T> it = dataset.iterator();  
  137.           int index = 0;  
  138.           while (it.hasNext()) {  
  139.              index++;  
  140.              row = sheet.createRow(index);  
  141.              T t = (T) it.next();  
  142.              //利用反射,根据javabean属性的先后顺序,动态调用getXxx()方法得到属性值  
  143.              Field[] fields = t.getClass().getDeclaredFields();  
  144.              for (short i = 0; i < fields.length; i++) {  
  145.                 HSSFCell cell = row.createCell(i);  
  146.                 cell.setCellStyle(style2);  
  147.                 Field field = fields[i];  
  148.                 String fieldName = field.getName();  
  149.                 String getMethodName = "get"  
  150.                        + fieldName.substring(01).toUpperCase()  
  151.                        + fieldName.substring(1);  
  152.                 try {  
  153.                     Class tCls = t.getClass();  
  154.                     Method getMethod = tCls.getMethod(getMethodName,  
  155.                           new Class[] {});  
  156.                     Object value = getMethod.invoke(t, new Object[] {});  
  157.                     //判断值的类型后进行强制类型转换  
  158.                     String textValue = null;  
  159. //                if (value instanceof Integer) {  
  160. //                   int intValue = (Integer) value;  
  161. //                   cell.setCellValue(intValue);  
  162. //                } else if (value instanceof Float) {  
  163. //                   float fValue = (Float) value;  
  164. //                   textValue = new HSSFRichTextString(  
  165. //                         String.valueOf(fValue));  
  166. //                   cell.setCellValue(textValue);  
  167. //                } else if (value instanceof Double) {  
  168. //                   double dValue = (Double) value;  
  169. //                   textValue = new HSSFRichTextString(  
  170. //                         String.valueOf(dValue));  
  171. //                   cell.setCellValue(textValue);  
  172. //                } else if (value instanceof Long) {  
  173. //                   long longValue = (Long) value;  
  174. //                   cell.setCellValue(longValue);  
  175. //                }   
  176.                     if (value instanceof Boolean) {  
  177.                        boolean bValue = (Boolean) value;  
  178.                        textValue = "男";  
  179.                        if (!bValue) {  
  180.                           textValue ="女";  
  181.                        }  
  182.                     } else if (value instanceof Date) {  
  183.                        Date date = (Date) value;  
  184.                        SimpleDateFormat sdf = new SimpleDateFormat(pattern);  
  185.                         textValue = sdf.format(date);  
  186.                     }  else if (value instanceof byte[]) {  
  187.                        // 有图片时,设置行高为60px;  
  188.                        row.setHeightInPoints(60);  
  189.                        // 设置图片所在列宽度为80px,注意这里单位的一个换算  
  190.                        sheet.setColumnWidth(i, (short) (35.7 * 80));  
  191.                        // sheet.autoSizeColumn(i);  
  192.                        byte[] bsValue = (byte[]) value;  
  193.                        HSSFClientAnchor anchor = new HSSFClientAnchor(00,  
  194.                              1023255, (short6, index, (short6, index);  
  195.                        anchor.setAnchorType(2);  
  196.                        patriarch.createPicture(anchor, workbook.addPicture(  
  197.                              bsValue, HSSFWorkbook.PICTURE_TYPE_JPEG));  
  198.                     } else{  
  199.                        //其它数据类型都当作字符串简单处理  
  200.                        textValue = value.toString();  
  201.                     }  
  202.                     //如果不是图片数据,就利用正则表达式判断textValue是否全部由数字组成  
  203.                     if(textValue!=null){  
  204.                        Pattern p = Pattern.compile("^//d+(//.//d+)?$");     
  205.                        Matcher matcher = p.matcher(textValue);  
  206.                        if(matcher.matches()){  
  207.                           //是数字当作double处理  
  208.                           cell.setCellValue(Double.parseDouble(textValue));  
  209.                        }else{  
  210.                           HSSFRichTextString richString = new HSSFRichTextString(textValue);  
  211.                           HSSFFont font3 = workbook.createFont();  
  212.                           font3.setColor(HSSFColor.BLUE.index);  
  213.                           richString.applyFont(font3);  
  214.                           cell.setCellValue(richString);  
  215.                        }  
  216.                     }  
  217.                 } catch (SecurityException e) {  
  218.                     // TODO Auto-generated catch block  
  219.                     e.printStackTrace();  
  220.                 } catch (NoSuchMethodException e) {  
  221.                     // TODO Auto-generated catch block  
  222.                     e.printStackTrace();  
  223.                 } catch (IllegalArgumentException e) {  
  224.                     // TODO Auto-generated catch block  
  225.                     e.printStackTrace();  
  226.                 } catch (IllegalAccessException e) {  
  227.                     // TODO Auto-generated catch block  
  228.                     e.printStackTrace();  
  229.                 } catch (InvocationTargetException e) {  
  230.                     // TODO Auto-generated catch block  
  231.                     e.printStackTrace();  
  232.                 } finally {  
  233.                     //清理资源  
  234.                 }  
  235.              }  
  236.        
  237.   
  238.           }  
  239.           try {  
  240.              workbook.write(out);  
  241.           } catch (IOException e) {  
  242.              // TODO Auto-generated catch block  
  243.              e.printStackTrace();  
  244.           }  
  245.        
  246.   
  247.        }  
  248.        
  249.   
  250.        public static void main(String[] args) {  
  251.           // 测试学生  
  252.           ExportExcel<Student> ex = new ExportExcel<Student>();  
  253.           String[] headers = { "学号""姓名""年龄""性别""出生日期" };  
  254.           List<Student> dataset = new ArrayList<Student>();  
  255.           dataset.add(new Student(10000001"张三"20truenew Date()));  
  256.           dataset.add(new Student(20000002"李四"24falsenew Date()));  
  257.           dataset.add(new Student(30000003"王五"22truenew Date()));  
  258.           // 测试图书  
  259.           ExportExcel<Book> ex2 = new ExportExcel<Book>();  
  260.           String[] headers2 = { "图书编号""图书名称""图书作者""图书价格""图书ISBN",  
  261.                 "图书出版社""封面图片" };  
  262.           List<Book> dataset2 = new ArrayList<Book>();  
  263.           try {  
  264.              BufferedInputStream bis = new BufferedInputStream(  
  265.                     new FileInputStream("book.jpg"));  
  266.              byte[] buf = new byte[bis.available()];  
  267.              while ((bis.read(buf)) != -1) {  
  268.                 //  
  269.              }  
  270.              dataset2.add(new Book(1"jsp""leno"300.33f, "1234567",  
  271.                     "清华出版社", buf));  
  272.              dataset2.add(new Book(2"java编程思想""brucl"300.33f, "1234567",  
  273.                     "阳光出版社", buf));  
  274.              dataset2.add(new Book(3"DOM艺术""lenotang"300.33f, "1234567",  
  275.                     "清华出版社", buf));  
  276.              dataset2.add(new Book(4"c++经典""leno"400.33f, "1234567",  
  277.                     "清华出版社", buf));  
  278.              dataset2.add(new Book(5"c#入门""leno"300.33f, "1234567",  
  279.                     "汤春秀出版社", buf));  
  280.        
  281.   
  282.              OutputStream out = new FileOutputStream("E://a.xls");  
  283.              OutputStream out2 = new FileOutputStream("E://b.xls");  
  284.              ex.exportExcel(headers, dataset, out);  
  285.              ex2.exportExcel(headers2, dataset2, out2);  
  286.              out.close();  
  287.              JOptionPane.showMessageDialog(null"导出成功!");  
  288.              System.out.println("excel导出成功!");  
  289.           } catch (FileNotFoundException e) {  
  290.              // TODO Auto-generated catch block  
  291.              e.printStackTrace();  
  292.           } catch (IOException e) {  
  293.              // TODO Auto-generated catch block  
  294.              e.printStackTrace();  
  295.           }  
  296.        }  
  297.       
  298. }  

 

 

  不行,头有点晕^_^。呵呵,又是泛型,又是反射,又是正则表达式,又是重载,还有多参数列表和POI API。一下子蹦出来,实在让人吃不消。不管了,顶住看效果先。在本地运行后,我们发现在E://下生成了两份excel文件:学生记录和图书记录,并且中文,数字,颜色,日期,图片等等一且正常。恩,太棒了。有人看到这里开始苦脸了:喂,我怎么一运行就报错啊!呵呵,看看什么错吧!哦,找不到文件,也就是说你没有book.jpg嘛。好,拷贝一张小巧的图书图片命名为book.jpg放置到当前工程下吧。注意,您千万别把张桌面大小的图片丢进去了^_^!看到效果了吧。现在我们再来简单梳理一下代码,实际上上面就做了一个导出excel的方法和一个本地测试main()方法。并且代码的结构也很清晰,只是涉及的知识点稍微多一点。大家细心看看注释,结合要完成的功能,应该没有太大问题的。好啦,吃杯茶,擦把汗,总算把这个类消化掉,你又进步了。咦,你不是说是在WEB环境下导出的吗?别急,因为导出就是一个下载的过程。我们只需要在服务器端写一个Jsp或者Servlet组件完成输出excel到浏览器客户端的工作就好了。我们以Servlet为例,还是看代码吧:

 

[java]  view plain copy print ?
  1. package com.j.servlet;  
  2.   
  3. import java.io.BufferedInputStream;  
  4. import java.io.File;  
  5. import java.io.FileInputStream;  
  6. import java.io.FileNotFoundException;  
  7. import java.io.IOException;  
  8. import java.io.OutputStream;  
  9. import java.util.ArrayList;  
  10. import java.util.List;  
  11.   
  12. import javax.servlet.ServletException;  
  13. import javax.servlet.http.HttpServlet;  
  14. import javax.servlet.http.HttpServletRequest;  
  15. import javax.servlet.http.HttpServletResponse;  
  16.   
  17. import com.j.bean.Book;  
  18. import com.j.util.ExportExcel;  
  19.   
  20. public class ExcelServlet extends HttpServlet {  
  21.   
  22.     static final long serialVersionUID = 1L;  
  23.   
  24.     protected void doGet(HttpServletRequest request,  
  25.             HttpServletResponse response) throws ServletException, IOException {  
  26.         File file = new File(getServletContext()  
  27.                 .getRealPath("WEB-INF/book.jpg"));  
  28.         response.setContentType("octets/stream");  
  29.         response.addHeader("Content-Disposition",  
  30.                 "attachment;filename=test.xlsx");  
  31.         // 测试图书  
  32.         ExportExcel<Book> ex = new ExportExcel<Book>();  
  33.         String[] headers = { "图书编号""图书名称""图书作者""图书价格""图书ISBN""图书出版社",  
  34.                 "封面图片" };  
  35.         List<Book> dataset = new ArrayList<Book>();  
  36.         try {  
  37.             BufferedInputStream bis = new BufferedInputStream(  
  38.                     new FileInputStream(file));  
  39.             byte[] buf = new byte[bis.available()];  
  40.             while ((bis.read(buf)) != -1) {  
  41.                 // 将图片数据存放到缓冲数组中  
  42.             }  
  43.             dataset.add(new Book(1"jsp""leno"300.33f, "1234567""清华出版社",  
  44.                     buf));  
  45.             dataset.add(new Book(2"java编程思想""brucl"300.33f, "1234567",  
  46.                     "阳光出版社", buf));  
  47.             dataset.add(new Book(3"DOM艺术""lenotang"300.33f, "1234567",  
  48.                     "清华出版社", buf));  
  49.             dataset.add(new Book(4"c++经典""leno"400.33f, "1234567",  
  50.                     "清华出版社", buf));  
  51.             dataset.add(new Book(5"c#入门""leno"300.33f, "1234567",  
  52.                     "汤春秀出版社", buf));  
  53.             OutputStream out = response.getOutputStream();  
  54.             ex.exportExcel(headers, dataset, out);  
  55.             out.close();  
  56.             System.out.println("excel导出成功!");  
  57.         } catch (FileNotFoundException e) {  
  58.             // TODO Auto-generated catch block  
  59.             e.printStackTrace();  
  60.         } catch (IOException e) {  
  61.             // TODO Auto-generated catch block  
  62.             e.printStackTrace();  
  63.         }  
  64.     }  
  65.   
  66.     protected void doPost(HttpServletRequest request,  
  67.             HttpServletResponse response) throws ServletException, IOException {  
  68.         doGet(request, response);  
  69.     }  
  70.   
  71. }  

 

 

  写完之后,如果您不是用eclipse工具生成的Servlet,千万别忘了在web.xml上注册这个Servelt。而且同样的,拷贝一张小巧的图书图片命名为book.jpg放置到当前WEB根目录的/WEB-INF/下。部署好web工程,用浏览器访问Servlet看下效果吧!是不是下载成功了。呵呵,您可以将下载到本地的excel报表用打印机打印出来,这样您就大功告成了。完事了我们就思考:我们发现,我们做的方法,不管是本地调用,还是在WEB服务器端用Servlet调用;不管是输出学生列表,还是图书列表信息,代码都几乎一样,而且这些数据我们很容器结合后台的DAO操作数据库动态获取。恩,类和方法的通用性和灵活性开始有点感觉了。好啦,祝您学习愉快!

 

 

jsp/servlet测试通过。。。

POI导出EXCEL经典实现(附带jar包)_第1张图片

 

 

 

poi-3.0.2-FINAL-20080204.jar下载地址:

       http://download.csdn.net/source/3302564

你可能感兴趣的:(String,servlet,正则表达式,Excel,出版,dataset)