Apache POI library is used to read and write into an excel sheet. 

classes used during Excel Read and Write.


   1. HSSF is prefixed before the class name to indicate operations related 
   to a Microsoft Excel 2003 file.
   2. XSSF is prefixed before the class name to indicate operations related 
   to a Microsoft Excel 2007 file or later.
   3. XSSFWorkbook and HSSFWorkbook are classes which act as an Excel 
   Workbook
   4. HSSFSheet and XSSFSheet are classes which act as an Excel Worksheet
   5. Row defines an Excel row
   6. Cell defines an Excel cell addressed in reference to a row.
   

  Apache POI library is easily available using Maven Dependencies.

<dependency>
  <groupId>org.apache.poi</groupId>
  <artifactId>poi-ooxml</artifactId>
  <version>3.15</version></dependency>


On Wednesday, May 4, 2016 at 11:37:10 AM UTC+5:30, atma...@gmail.com wrote:
>
> What is the abbreviation of POI in Java and how it works? can I get help 
> from anybody? 
>

-- 
You received this message because you are subscribed to the Google Groups "Java 
Posse" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to javaposse+unsubscr...@googlegroups.com.
To post to this group, send email to javaposse@googlegroups.com.
Visit this group at https://groups.google.com/group/javaposse.
For more options, visit https://groups.google.com/d/optout.

Reply via email to