如何使用Apache POI事件API来读取特定行?(How to read specific ro

2019-10-16 15:38发布

我想读大XLS或XLSX文件(约30多MB,并且具有20000行)。 我能够读取使用Apache POI小Excel文件eaily,直到我得到一个内存不足错误。

性能和内存使用情况对我来说是一个问题。 我经历了很多帖子阅读,如果内存占用的问题,那么对于XSSF,你可以在底层的XML数据的获取,使用和XSSF SAX(事件API)自己处理它。 嗯,我觉得它很有趣,现在可以读取整个XLSX文件没有任何问题。 它消耗相比几乎以GB为更少的内存(小于70 MB)(上升到1GB,如果我有-Xmx设置为1024米,它仍然用来挂)不使用事件API时。

但现在我想自定义读取过程,并允许从一个excel只读特定行。 我可以很容易地做到这一点使用org.apache.poi.ss.usermodel.Sheet#的getRow(INT ROWNUM)。 但是,使用事件API读取没有任何中断都行,我觉得很难阅读特定行,例如只是行号2,3,5等。下面是我的全部代码:

import java.io.InputStream;
import java.util.Iterator;
import java.util.Vector;
import org.apache.poi.xssf.eventusermodel.XSSFReader;
import org.apache.poi.xssf.model.SharedStringsTable;
import org.apache.poi.xssf.usermodel.XSSFRichTextString;
import org.apache.poi.openxml4j.opc.OPCPackage;
import org.xml.sax.Attributes;
import org.xml.sax.ContentHandler;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;
import org.xml.sax.XMLReader;
import org.xml.sax.helpers.DefaultHandler;
import org.xml.sax.helpers.XMLReaderFactory;

/**
 * XSSF and SAX (Event API)
 */
public class FromHowTo {
    public void processAllSheets(String filename) throws Exception {
        OPCPackage pkg = OPCPackage.open(filename);
        XSSFReader r = new XSSFReader( pkg );
        SharedStringsTable sst = r.getSharedStringsTable();

        XMLReader parser = fetchSheetParser(sst);

        Iterator<InputStream> sheets = r.getSheetsData();
        while(sheets.hasNext()) {
            InputStream sheet = sheets.next();
            InputSource sheetSource = new InputSource(sheet);
            parser.parse(sheetSource);
            sheet.close();
        }
    }

    public XMLReader fetchSheetParser(SharedStringsTable sst) throws SAXException {
        XMLReader parser = XMLReaderFactory.createXMLReader("org.apache.xerces.parsers.SAXParser");
        ContentHandler handler = new SheetHandler(sst);
        parser.setContentHandler(handler);
        return parser;
    }

    /** 
     * See org.xml.sax.helpers.DefaultHandler javadocs 
     */
    private static class SheetHandler extends DefaultHandler {
        private SharedStringsTable sst;
        private String lastContents;
        private boolean nextIsString;
        Vector values = new Vector(10);

        private SheetHandler(SharedStringsTable sst) {
            this.sst = sst;
        }

        public void startElement(String uri, String localName, String name, Attributes attributes) throws SAXException {
            // c => cell

            if(name.equals("c")) {
                // Figure out if the value is an index in the SST
                String cellType = attributes.getValue("t");
                //System.out.println(cellType);
                if(cellType != null && cellType.equals("s")) {
                    nextIsString = true;
                } else {
                    nextIsString = false;
                }
            }
            // Clear contents cache
            lastContents = "";
        }

        public void endElement(String uri, String localName, String name) throws SAXException {
            // Process the last contents as required.
            // Do now, as characters() may be called more than once
            if(nextIsString) {
                try {
                    int idx = Integer.parseInt(lastContents);
                    lastContents = new XSSFRichTextString(sst.getEntryAt(idx)).toString();
                } catch (NumberFormatException e) {
                }
            }

            // v => contents of a cell
            // Output after we've seen the string contents
            if(name.equals("v")) {
                values.add(lastContents);
            }

            if(name.equals("row")) {
                System.out.println(values);
                values.removeAllElements();
            }
        }

        public void characters(char[] ch, int start, int length) throws SAXException {
            lastContents += new String(ch, start, length);
        }
    }

    public static void main(String[] args) throws Exception {
        FromHowTo howto = new FromHowTo();
        howto.processAllSheets(args[0]);
    }
}

我使用JRE7与Apache POI 3.7。 是否有人可以帮助我得到与事件API特定行?

Answer 1:

每行开始元件具有行号。 它可以从属性中检索

长的rowIndex = Long.valueOf(attributes.getValue( “R”));

事件模型将通过所有的行,但你能得到他的索引,并在相应的endElement处理您的数据



文章来源: How to read specific rows using Apache POI Event API?
标签: apache-poi