zoukankan      html  css  js  c++  java
  • execel 的java库

    http://fastexcel.sourceforge.net/

    Fast Excel-Yet Another Excel Read/Write Component.SourceForge.net Logo
    Abstract

    FastExcel is a pure java excel read/write component.It's FAST and TINY. We provide:

    • Reading and Writing support for Excel '97(-2003) (BIFF8) file format.
    • Low level structures for BIFF(Binary Interchange File Format).
    • Low level structures for compound document file format (also known as "OLE2 storage file format" or "Microsoft Office compatible storage file format").
    • API for creating, reading excel file.

    FastExcel is content-based,that means we just care about the content of excel. So FastExcel just read the cell string and other important information,Some Properities like color,font are not supported.Because we don't need to read,parse,store these additional information so FastExcel just need little memory.

    Table of ContentsAbout FastExcel

    FastExcel is a pure java excel read/write component.We provide reading and writing Excel[1]'97(-2003) (BIFF8[2]) file format and a low level API for compound document file format[3][4].It license under the term of LGPL. For more information contract

    How it works

    A workbook document with several sheets (BIFF5-BIFF8) is usually stored using the compound document file format (also known as "OLE2 storage file format" or "Microsoft Office compatible storage file format"). It contains several streams for different types of data.Depending on the document type, different names are used for the stream(s) they contain. BIFF5-BIFF8 workbook documents that are stored in a compound document file contain a stream in the root storage called the Workbook Stream. The name of this stream in the compound document file is "Book" for BIFF5 workbooks, and "Workbook" for BIFF8 workbooks.If a BIFF5-BIFF8 workbook document is stored as stream file, the entire stream is called the Workbook Stream. In BIFF5-BIFF8 Workbook Streams, the Workbook Globals Substream ist the leading part of the stream. It is followed by all Sheet Substreams in order of the sheets that are in the document. Common structure of a BIFF5-BIFF8 Workbook Stream:

    • Workbook Globals Substream (required)
    • First Sheet Substream (required)
    • Second Sheet Substream (optional)
    • Third Sheet Substream (optional)

    Most of the Excel streams or substreams are divided into records. Each record contains specific data for the various contents or features in a document. It consists of a header specifying the record type and size, followed by the record data. Common structure of a BIFF record:

    Offset Size Contents 0 2 Identifier 2 2 Size of the following data (sz) 4 sz Record data

    To read excel file.FastExcel parse these record and build a inner struct of excel file.The Record Parsers:

    • BOFParser
    • EOFParser
    • BoundSheetParser
    • SSTParser
    • IndexParser
    • DimensionParser
    • RowParser
    • LabelSSTParser
    • RKParser
    • MulRKParser
    • LabelParser
    • BoolerrParser
    • XFParser
    • FormatParser
    • DateModeParser
    • StyleParser
    • MulBlankParser
    • NumberParser
    • RStringParser
    Example

    public void testDump() throws ParserException, ReadException {
    Workbook workBook;
    workBook = FastExcel.createReadableWorkbook(new File("d:/write.xls"));
    workBook.open();
    Sheet s;
    s = workBook.getSheet(0);
    System.out.println("SHEET:"+s);
    for (int i = s.getFirstRow(); i <= s.getLastRow(); i++) {
    System.out.print(i+"#");
    for (int j = s.getFirstColumn(); j <=s.getLastColumn(); j++) {
    System.out.print(","+s.getCell(i, j));
    }
    System.out.println();
    }
    workBook.close();
    }Download

    click here

    References
    1. http://en.wikipedia.org/wiki/Microsoft_Excel.
    2. http://sc.openoffice.org/excelfileformat.pdf
    3. http://sc.openoffice.org/compdocfileformat.pdf
    4. http://blog.csdn.net/liangjingbo/archive/2008/09/03/2874959.aspx
  • 相关阅读:
    【详记MySql问题大全集】四、设置MySql大小写敏感(踩坑血泪史)
    【详记MySql问题大全集】三、安装之后没有my.ini配置文件怎么办
    【详记MySql问题大全集】二、安装并破解Navicat
    【详记MySql问题大全集】一、安装MySql
    【从零开始搭建自己的.NET Core Api框架】(五)由浅入深详解CORS跨域机制并快速实现
    Redhat6.5编译安装MySQL5.6.38详解
    聚宽常用函数汇总
    小象机器学习(邹博老师)学习笔记
    Python画图色板
    kaggle注册、短信验证终极解决方案(亲测181205)
  • 原文地址:https://www.cnblogs.com/danghuijian/p/4400796.html
Copyright © 2011-2022 走看看