写海量excel数据(无OOM)

1.声明,代码来自这位朋

添加链接描述

2.注意事项,写入excel是先写入xml再转为xls、xlsx,共4个类文件

在这里插入图片描述

3.依赖包如下,共2个

在这里插入图片描述

4.Excel2003Writer.java


package com.aisino.writexcel;

import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.usermodel.Sheet;
import org.apache.poi.ss.usermodel.Workbook;

import java.io.FileOutputStream;
import java.io.IOException;

public class Excel2003Writer {
      
        /** 
         * @param args 
         */  
        public static void main(String[] args) {  
            try{      
                System.out.println("开始写入excel2003....");  
                writeExcel("tes2003.xls");  
                System.out.println("写完xcel2003");  
            } catch (IOException e) {
              
            }  
        }  
          
          
        /** 
         * 写入excel并填充内容,一个sheet只能写65536行以下,超出会报异常,写入时建议使用AbstractExcel2007Writer 
         * @param fileName 
         * @throws IOException 
         */  
        public static void writeExcel(String fileName) throws IOException{  
                  
                // 创建excel2003对象  
                Workbook wb = new HSSFWorkbook();
                  
                // 设置文件放置路径和文件名  
                FileOutputStream fileOut = new FileOutputStream(fileName);
                // 创建新的表单  
                Sheet sheet = wb.createSheet("newsheet");
                // 创建新行  
                for(int i=0;i<20000;i++){  
                    Row row = sheet.createRow(i);
                    // 创建单元格  
                    Cell cell = row.createCell(0);
                    // 设置单元格值  
                    cell.setCellValue(1);  
                    row.createCell(1).setCellValue(1+i);  
                    row.createCell(2).setCellValue(true);  
                    row.createCell(3).setCellValue(0.43d);  
                    row.createCell(4).setCellValue('d');  
                    row.createCell(5).setCellValue("");  
                    row.createCell(6).setCellValue("第七列"+i);  
                    row.createCell(7).setCellValue("第八列"+i);  
                }  
                wb.write(fileOut);  
                fileOut.close();  
        }  
      
      
    }

5.AbstractExcel2007Writer.java 特别注意内部xml临时文件是否存在以及自动创建、自动删除

package com.aisino.writexcel;

import org.apache.poi.hssf.util.CellReference;
import org.apache.poi.ss.usermodel.DateUtil;
import org.apache.poi.xssf.usermodel.XSSFSheet;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.FileWriter;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.Writer;
import java.util.Calendar;
import java.util.Enumeration;
import java.util.zip.ZipEntry;
import java.util.zip.ZipFile;
import java.util.zip.ZipOutputStream;

/**
     * 抽象excel2007读入器,先构建.xlsx一张模板,改写模板中的sheet.xml,使用这种方法 
     * 写入.xlsx文件,不需要太大的内存 
     * 
     */  
    public abstract class AbstractExcel2007Writer {  
          
        private SpreadsheetWriter sw;  
      
        /** 
         * 写入电子表格的主要流程 
         * @param fileName 
         * @throws Exception 
         */  
        public void process(String fileName) throws Exception{  
            // 建立工作簿和电子表格对象  
            XSSFWorkbook wb = new XSSFWorkbook();
            XSSFSheet sheet = wb.createSheet("sheet1");
            // 持有电子表格数据的xml文件名 例如 /xl/worksheets/sheet1.xml  
            String sheetRef = sheet.getPackagePart().getPartName().getName();  
      
            // 保存模板  
            FileOutputStream os = new FileOutputStream("template.xlsx");
            wb.write(os);  
            os.close();  
              
            // 生成xml文件  
            File tmp = File.createTempFile("sheet", ".xml");
            Writer fw = new FileWriter(tmp);
            sw = new SpreadsheetWriter(fw);  
            generate();  
            fw.close();  
              
            // 使用产生的数据替换模板  
            File templateFile = new File("template.xlsx");  
            FileOutputStream out = new FileOutputStream(fileName);  
            substitute(templateFile, tmp, sheetRef.substring(1), out);  
            out.close();  
            //删除文件之前调用一下垃圾回收器,否则无法删除模板文件  
            System.gc();  
            // 删除临时模板文件  
            if (templateFile.isFile()&&templateFile.exists()){  
                templateFile.delete();  
            }  
        }  
      
        /** 
         * 类使用者应该使用此方法进行写操作 
         * @throws Exception 
         */  
        public abstract void generate() throws Exception;  
      
        public void beginSheet() throws IOException {
            sw.beginSheet();  
        }  
      
        public void insertRow(int rowNum) throws IOException {  
            sw.insertRow(rowNum);  
        }  
      
        public void createCell(int columnIndex, String value) throws IOException {  
            sw.createCell(columnIndex, value, -1);  
        }  
      
        public void createCell(int columnIndex, double value) throws IOException {  
            sw.createCell(columnIndex, value, -1);  
        }  
      
        public void endRow() throws IOException {  
            sw.endRow();  
        }  
      
        public void endSheet() throws IOException {  
            sw.endSheet();  
        }  
      
        /** 
         * 
         * @param zipfile the template file 
         * @param tmpfile the XML file with the sheet data 
         * @param entry the name of the sheet entry to substitute, e.g. xl/worksheets/sheet1.xml 
         * @param out the stream to write the result to 
         */  
        private static void substitute(File zipfile, File tmpfile, String entry,  
                OutputStream out) throws IOException {
            ZipFile zip = new ZipFile(zipfile);
            ZipOutputStream zos = new ZipOutputStream(out);
      
            @SuppressWarnings("unchecked")
            Enumeration<ZipEntry> en = (Enumeration<ZipEntry>) zip.entries();
            while (en.hasMoreElements()) {  
                ZipEntry ze = en.nextElement();  
                if (!ze.getName().equals(entry)) {  
                    zos.putNextEntry(new ZipEntry(ze.getName()));  
                    InputStream is = zip.getInputStream(ze);
                    copyStream(is, zos);  
                    is.close();  
                }  
            }  
            zos.putNextEntry(new ZipEntry(entry));  
            InputStream is = new FileInputStream(tmpfile);
            copyStream(is, zos);  
            is.close();  
            zos.close();  
        }  
      
        private static void copyStream(InputStream in, OutputStream out)  
                throws IOException {  
            byte[] chunk = new byte[1024];  
            int count;  
            while ((count = in.read(chunk)) >= 0) {  
                out.write(chunk, 0, count);  
            }  
        }  
      
        /** 
         * 在写入器中写入电子表格 
         *  
         */  
        public static class SpreadsheetWriter {  
            private final Writer _out;  
            private int _rownum;  
            private static String LINE_SEPARATOR = System.getProperty("line.separator");  
      
            public SpreadsheetWriter(Writer out) {  
                _out = out;  
            }  
      
            public void beginSheet() throws IOException {  
                _out.write("<?xml version=\"1.0\" encoding=\"GB2312\"?>"  
                                + "<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\">");  
                _out.write("<sheetData>"+LINE_SEPARATOR);  
            }  
      
            public void endSheet() throws IOException {  
                _out.write("</sheetData>");  
                _out.write("</worksheet>");  
            }  
      
            /** 
             * 插入新行 
             * 
             * @param rownum 以0开始 
             */  
            public void insertRow(int rownum) throws IOException {  
                _out.write("<row r=\"" + (rownum + 1) + "\">"+LINE_SEPARATOR);  
                this._rownum = rownum;  
            }  
      
            /** 
             * 插入行结束标志 
             */  
            public void endRow() throws IOException {  
                _out.write("</row>"+LINE_SEPARATOR);  
            }  
      
            /** 
             * 插入新列 
             * @param columnIndex 
             * @param value 
             * @param styleIndex 
             * @throws IOException 
             */  
            public void createCell(int columnIndex, String value, int styleIndex)  
                    throws IOException {  
                String ref = new CellReference(_rownum, columnIndex)
                        .formatAsString();  
                _out.write("<c r=\"" + ref + "\" t=\"inlineStr\"");  
                if (styleIndex != -1)  
                    _out.write(" s=\"" + styleIndex + "\"");  
                _out.write(">");  
                _out.write("<is><t>"+XMLEncoder.encode(value)+"</t></is>");  
                _out.write("</c>");  
            }  
      
            public void createCell(int columnIndex, String value)  
                    throws IOException {  
                createCell(columnIndex, value, -1);  
            }  
      
            public void createCell(int columnIndex, double value, int styleIndex)  
                    throws IOException {  
                String ref = new CellReference(_rownum, columnIndex)  
                        .formatAsString();  
                _out.write("<c r=\"" + ref + "\" t=\"n\"");  
                if (styleIndex != -1)  
                    _out.write(" s=\"" + styleIndex + "\"");  
                _out.write(">");  
                _out.write("<v>" + value + "</v>");  
                _out.write("</c>");  
            }  
      
            public void createCell(int columnIndex, double value)  
                    throws IOException {  
                createCell(columnIndex, value, -1);  
            }  
      
            public void createCell(int columnIndex, Calendar value, int styleIndex)
                    throws IOException {  
                createCell(columnIndex, DateUtil.getExcelDate(value, false),
                        styleIndex);  
            }  
        }  
    }

6.Excel2007WriterImpl.java

package com.aisino.writexcel;

public class Excel2007WriterImpl extends AbstractExcel2007Writer{
      
          
        /** 
         * @param args 
         * @throws Exception 
         */  
        public static void main(String[] args) throws Exception {  
            // TODO Auto-generated method stub  
            System.out.println("............................");  
            long start = System.currentTimeMillis();  
            //构建excel2007写入器  
            AbstractExcel2007Writer excel07Writer = new Excel2007WriterImpl();  
            //调用处理方法  
            excel07Writer.process("F://test07.xlsx");  
            long end = System.currentTimeMillis();  
            System.out.println("....................."+(end-start)/1000);  
        }  
      
          
        /*  
         * 可根据需求重写此方法,对于单元格的小数或者日期格式,会出现精度问题或者日期格式转化问题,建议使用字符串插入方法 
         * @see com.excel.ver2.AbstractExcel2007Writer#generate() 
         */  
        @Override  
        public void generate()throws Exception {  
            //电子表格开始  
            beginSheet();  
            for (int rownum = 0; rownum < 100; rownum++) {  
                //插入新行  
                insertRow(rownum);  
                //建立新单元格,索引值从0开始,表示第一列  
                createCell(0, "中国<" + rownum + "!");  
                createCell(1, 34343.123456789);  
                createCell(2, "23.67%");  
                createCell(3, "12:12:23");  
                createCell(4, "2010-10-11 12:12:23");  
                createCell(5, "true");  
                createCell(6, "false");  
                
                //结束行  
                endRow();  
            }  
            //电子表格结束  
            endSheet();  
        }  
      
    }

7.XMLEncoder.java

package com.aisino.writexcel;

public class XMLEncoder {
      
        private static final String[] xmlCode = new String[256];
      
        static {  
            // Special characters  
            xmlCode['\''] = "'";  
            xmlCode['\"'] = "\""; // double quote
            xmlCode['&'] = "&"; // ampersand  
            xmlCode['<'] = "<"; // lower than  
            xmlCode['>'] = ">"; // greater than  
        }  
      
        /** 
         * <p> 
         * Encode the given text into xml. 
         * </p> 
         *  
         * @param string the text to encode 
         * @return the encoded string 
         */  
        public static String encode(String string) {
            if (string == null) return "";  
            int n = string.length();  
            char character;  
            String xmlchar;
            StringBuffer buffer = new StringBuffer();
            // loop over all the characters of the String.  
            for (int i = 0; i < n; i++) {  
                character = string.charAt(i);  
                // the xmlcode of these characters are added to a StringBuffer one by one  
                try {  
                    xmlchar = xmlCode[character];  
                    if (xmlchar == null) {  
                        buffer.append(character);  
                    } else {  
                        buffer.append(xmlCode[character]);  
                    }  
                } catch (ArrayIndexOutOfBoundsException aioobe) {
                    buffer.append(character);  
                }  
            }  
            return buffer.toString();  
        }  
      
    }
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值