首页 > 代码库 > jxl导入导出Excel

jxl导入导出Excel

Excel的导入导出在项目中经常用到,比较常用的解析架包是jxl和poi。这里首先介绍jxl是如何实现的。

通过参考网上的写法跟我个人的理解:

导入Excel:通过本地文件得到一个输入流,然后根据Excel的结构来解析数据。

导出Excel:声明一个输出流对象,根据参数来得到一个workbook,用来写入数据的。然后根据Excel表的结构来想workbook添加元素即可。sheet、cell...。

导出Excel,导出含有图片的数据:jxl只支持png格式的图片。

导出对象到Excel表:其实就是根据对象的属性类型,添加对应类型的单元格cell到sheet里,如字符串对应new label,图片对应labelImage,整型数字对应new Number..

通过一个类来实现这两个操作:

package wkl.util;import java.io.File;import java.io.FileInputStream;import java.io.FileOutputStream;import java.io.IOException;import java.util.ArrayList;import java.util.List;import jxl.Cell;import jxl.Sheet;import jxl.Workbook;import jxl.write.Label;import jxl.write.WritableSheet;import jxl.write.WritableWorkbook;import jxl.write.WriteException;public class ExcelTest {    /**     * 要点:根据输入流来得到一个Excel文档即workbook,然后对workbook进行解析     * jxl操作Excel表格:导入:2007版本以上不支持     */    public static void importEx(){        Workbook workbook = null;        try {            //得到一个Excel文档            workbook = Workbook.getWorkbook(new FileInputStream("G:\\xx.xls"));            //获取一个工作本sheet            Sheet sheet = workbook.getSheet(0);            //获得工作本的行数            int totalrows = sheet.getRows();            System.out.println("总行数="+totalrows);            //获得列数            int cols = sheet.getColumns();            System.out.println("总的列数="+cols);            //遍历行和列(第0行其实是表格的标题,可以从第一行读取到数据)            for(int i=0;i<totalrows;i++){                for(int j=0;j<cols;j++){                    Cell cell = sheet.getCell(j, i);//先列后行                    String contents = cell.getContents();//得到单元格的内容                    System.out.println("内容="+contents);                }                            }        } catch (Exception e) {            e.printStackTrace();        }    }        /**     * 要点:首先通过一个输出流来得到一个工作本(excel),然后就是按照Excel的结构往里加数据     * 导出到硬盘:1、生成一个工作本 2、创建sheet 3、添加单元格label 4、写入数据     * @param args     */    public static void exportEx(){        WritableWorkbook book = null;        try {            //创建一个工作本            book = Workbook.createWorkbook(new FileOutputStream("G:\\测试.xls"));            //创建一个sheet            WritableSheet sheet = book.createSheet("第一个sheet", 0);            //创建label一            Label label = new Label(0,0,"姓名");            //创建label二            Label label2 = new Label(1,0,"年龄");            //创建label3            Label label3 = new Label(2,0,"性别");            List list = new ArrayList();            list.add(label);            list.add(label2);            list.add(label3);            //添加label到sheet            for(int i=0;i<list.size();i++){                sheet.addCell((Label)list.get(i));            }            //写入数据            book.write();            System.out.println("创建成功");        } catch (Exception e) {            e.printStackTrace();        }finally{            if(book!=null){                try {                    book.close();                } catch (WriteException e) {                    // TODO Auto-generated catch block                    e.printStackTrace();                } catch (IOException e) {                    // TODO Auto-generated catch block                    e.printStackTrace();                }            }        }    }

/**
     * 图片写入:当需要导出的数据包含图片的时候
     * @param args
     */
    public static void exportImg(){
        WritableWorkbook book = null;
        try {
            book = Workbook.createWorkbook(new File("G:\\img.xls"));
            WritableSheet sheet = book.createSheet("图片", 0);
            
            //只支持png格式的图片
            File imgFile = new File("G:\\test.png");//图片数据
            WritableImage labelImage = new WritableImage(1, 4, 6, 18, imgFile);
            sheet.addImage(labelImage);
            book.write();
        } catch (Exception e) {
            e.printStackTrace();
        }finally{
            if(book!=null){
                try {
                    book.close();
                } catch (WriteException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                } catch (IOException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
            }
        }
    }
    /**
     * 对象数据写入到Excel
     */
    public void writeExcel() {
        WritableWorkbook book = null;
        try {
            // 打开文件
            book = Workbook.createWorkbook(new File("D:/test/stu.xls"));
            // 生成名为"学生"的工作表,参数0表示这是第一页
            WritableSheet sheet = book.createSheet("学生", 0);
            
            List<Student> stuList=Student.queryStudentList();
            if(stuList!=null && !stuList.isEmpty()){
                for(int i=0; i<stuList.size(); i++){
                    sheet.addCell(new Label(0, i, stuList.get(i).getName()));
                    sheet.addCell(new Number(1, i, stuList.get(i).getAge()));
                }
            }
            
            // 写入数据并关闭文件
            book.write();
        } catch (Exception e) {
            System.out.println(e);
        }finally{
            if(book!=null){
                try {
                    book.close();
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        }
    
    }
public static void main(String args[]){ //importEx(); exportEx(); }}

 

jxl导入导出Excel