All Projects → apache → Poi

apache / Poi

Mirror of Apache POI

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Poi

Pdfbox
Mirror of Apache PDFBox
Stars: ✭ 1,384 (+21.83%)
Mutual labels:  content, library
Align
A general purpose application and library for aligning text.
Stars: ✭ 63 (-94.45%)
Mutual labels:  library
Mcusim
MCUSim is an XSPICE library with microcontrollers.
Stars: ✭ 59 (-94.81%)
Mutual labels:  library
Go Openssl
go-openssl is a small library wrapping the crypto/aes functions in a way the output is compatible to OpenSSL
Stars: ✭ 61 (-94.63%)
Mutual labels:  library
Girc
💣 girc is a flexible IRC library for Go 👌
Stars: ✭ 59 (-94.81%)
Mutual labels:  library
Whisper
Whisper is a file-based time-series database format for Graphite.
Stars: ✭ 1,121 (-1.32%)
Mutual labels:  library
React No Content
A SVG react component to display when there's no content.
Stars: ✭ 59 (-94.81%)
Mutual labels:  content
Tus Java Server
Library to receive tus v1.0.0 file uploads in a Java server environment
Stars: ✭ 64 (-94.37%)
Mutual labels:  library
Dotsloaderview
Simple dots loader view
Stars: ✭ 63 (-94.45%)
Mutual labels:  library
Gena
Generic pseudo-templated containers for C. Written entirely in C89 with design inspired by the C++ STL. /// DOCS ARE SLIGHTLY OUTDATED, PROJECT IS STABLE AND STILL IN ACTIVE DEVELOPMENT
Stars: ✭ 61 (-94.63%)
Mutual labels:  library
Quantumgate
QuantumGate is a peer-to-peer (P2P) communications protocol, library and API written in C++.
Stars: ✭ 62 (-94.54%)
Mutual labels:  library
Goshare
Go Share your TimeSeries/NameSpace/KeyVal DataStore (using leveldb) over HTTP &/or ZeroMQ
Stars: ✭ 59 (-94.81%)
Mutual labels:  library
Roffildlibrary
Library for MQL5 (MetaTrader) with Python, Java, Apache Spark, AWS
Stars: ✭ 63 (-94.45%)
Mutual labels:  library
Ngx Tree Select
Angular select component with tree items
Stars: ✭ 59 (-94.81%)
Mutual labels:  library
Sparkbutton
Android library to create buttons with Twitter's heart like animation.
Stars: ✭ 1,129 (-0.62%)
Mutual labels:  library
React Gojs
GoJS React integration
Stars: ✭ 59 (-94.81%)
Mutual labels:  library
New Empty Python Project Base
The Perfect Python Project Template. Bored of coding anew the same thing for your new Python projects? Here is what you need. Click below on the "use this template" green button to start using it instantly. Rename the "project" folder and all references to this folder to customize your project name.
Stars: ✭ 60 (-94.72%)
Mutual labels:  library
Cryptofin Solidity
A collection of Solidity libraries for building secure and gas-efficient smart contracts on Ethereum.
Stars: ✭ 62 (-94.54%)
Mutual labels:  library
Logging Log4j2
Apache Log4j 2 is an upgrade to Log4j that provides significant improvements over its predecessor, Log4j 1.x, and provides many of the improvements available in Logback while fixing some inherent problems in Logback's architecture.
Stars: ✭ 1,133 (-0.26%)
Mutual labels:  library
Ramd.js
ramd.js JavaScript library for making web applications.
Stars: ✭ 64 (-94.37%)
Mutual labels:  library

Apache POI

A Java library for reading and writing Microsoft Office binary and OOXML file formats.

The Apache POI Project's mission is to create and maintain Java APIs for manipulating various file formats based upon the Office Open XML standards (OOXML) and Microsoft's OLE 2 Compound Document format (OLE2). In short, you can read and write MS Excel files using Java. In addition, you can read and write MS Word and MS PowerPoint files using Java. Apache POI is your Java Excel solution (for Excel 97-2008). We have a complete API for porting other OOXML and OLE2 formats and welcome others to participate.

OLE2 files include most Microsoft Office files such as XLS, DOC, and PPT as well as MFC serialization API based file formats. The project provides APIs for the OLE2 Filesystem (POIFS) and OLE2 Document Properties (HPSF).

Office OpenXML Format is the new standards based XML file format found in Microsoft Office 2007 and 2008. This includes XLSX, DOCX and PPTX. The project provides a low level API to support the Open Packaging Conventions using openxml4j.

For each MS Office application there exists a component module that attempts to provide a common high level Java api to both OLE2 and OOXML document formats. This is most developed for Excel workbooks (SS=HSSF+XSSF). Work is progressing for Word documents (WP=HWPF+XWPF) and PowerPoint presentations (SL=HSLF+XSLF).

The project has some support for Outlook (HSMF). Microsoft opened the specifications to this format in October 2007. We would welcome contributions.

There are also projects for Visio (HDGF and XDGF), TNEF (HMEF), and Publisher (HPBF).

This library includes the following components, roughly in descending order of maturity:

  • Excel spreadsheets (Common SS = HSSF, XSSF, and SXSSF)
  • PowerPoint slideshows (Common SL = HSLF and XSLF)
  • Word processing documents (Common WP = HWPF and XWPF)
  • Outlook email (HSMF and HMEF)
  • Visio diagrams (HDGF and XDGF)
  • Publisher (HPBF)

And lower-level, supporting components:

  • OLE2 Filesystem (POIFS)
  • OLE2 Document Properties (HPSF)
  • TNEF (HMEF) for Outlook winmail.dat files
  • OpenXML4J (OOXML)

| Components named H??F are for reading or writing OLE2 binary formats. | Components named X??F are for reading or writing OpenOffice XML (OOXML) formats.

Getting started

Website: https://poi.apache.org/

Mailing lists_:

  • Developers_
  • Users_
  • General_ (release announcements)

Bug tracker:

  • Bugzilla_
  • GitHub pull requests_

Source code:

  • Official Apache Subversion repo_ at apache.org
  • ViewVC repo browser_ at apache.org
  • GitHub git mirror_ at github.com

Requires Java 1.8 or later.

Contributing

  • Download and install svn or git, Java JDK 1.8+, and Apache Ant 1.8+ or Gradle

  • Check out the code from svn or git

  • Import the project into Eclipse or your favorite IDE

  • Write a unit test:

    • Binary formats and Common APIs: src/testcases/org/apache/poi/
    • OOXML APIs only: src/ooxml/testcases/org/apache/poi/
    • Scratchpad (Binary formats): src/scratchpad/testcases/org/apache/poi/
    • Test files: test-data/
  • Navigate the source, make changes, and run unit tests to verify

    • Binary formats and Common APIs: src/java/org/apache/poi/
    • OOXML APIs only: src/ooxml/java/org/apache/poi/
    • Scratchpad (Binary formats): src/scratchpad/src/org/apache/poi/
    • Examples: src/examples/src/org/apache/poi/
  • More info: How To Build page_ at apache.org

Building jar files

To build the jar files for poi, poi-ooxml, poi-ooxml-lite, poi-ooxml-full and poi-examples::

ant jar

.. _Mailing lists: https://poi.apache.org/mailinglists.html .. _Developers: https://lists.apache.org/[email protected] .. _Users: https://lists.apache.org/[email protected] .. _General: https://lists.apache.org/[email protected] .. _Bugzilla: https://bz.apache.org/bugzilla/buglist.cgi?product=POI .. _GitHub pull requests: https://github.com/apache/poi/pulls

.. _Apache Subversion repo: https://svn.apache.org/repos/asf/poi/trunk .. _ViewVC repo browser: https://svn.apache.org/viewvc/poi/trunk .. _GitHub git mirror: https://github.com/apache/poi .. _How To Build page: http://poi.apache.org/devel/

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].