Home PC Games Linux Windows Database Network Programming Server Mobile  
           
  Home \ Linux \ Apache POI Excel Document Processing     - Using nmcli commands to manage network in RedHat / CentOS 7.x (Linux)

- How to configure AWStats in Ubuntu Server (Server)

- Detailed use Zabbix monitoring Nginx (Server)

- TOAST function in PostgreSQL (Database)

- Cacti installation deployment under CentOS 6.6 (Server)

- EXP-00091 Error resolved (Database)

- dd command: do hard disk IO performance test (Linux)

- xCAT line installation on CentOS 6.X (Linux)

- Ubuntu 14.04 set auto sleep time (Linux)

- Hutchison DG standby database CPU consumption reached bottleneck repair (Database)

- Compile and install Redis and register as a system service under RedHat5.8 environment (Database)

- MySQL Tutorial: Using tpcc-mysql pressure measurement (Database)

- Solve the compatibility problem between Linux and Java at the source in bold font (Linux)

- [JavaScript] catch (ex) statements of ex (Programming)

- Forgot Linux root password (Linux)

- VMware clone Linux find eth0 (Linux)

- learning Linux ls command examples (Linux)

- Ubuntu uses conky add desktop control (Linux)

- Linux Firewall IPCop Profile (Linux)

- Observation network performance tools for Linux (Linux)

 
         
  Apache POI Excel Document Processing
     
  Add Date : 2018-11-21      
         
         
         
  Currently popular treatment excel document, there are two general ways, namely POI and JXL. Heavyweight POI advantages and disadvantages: suitable for excel document details a relatively professional requirements, such as using formulas, macros and other advanced features; drawback is that the operation is relatively cumbersome, non-pure java prepared rack package, cross-platform needs to be strengthened. Lightweight JXL disadvantages: Jxl pure javaAPI, excellent cross-platform, the operation is relatively simple; drawback is that does not support some of the advanced features excel document, but to meet the daily needs. Here we introduce the basic use of the POI.

1. First, import the relevant frame package

Also note that this version of the JDK you what development projects is to download different versions according to the corresponding POI JDK version.

2. Operation ExcelReader helper class can handle xls and xlsx files, readExcelTitle (InputStream is) Reads the file header, which is the first line of the file, readExcelContent (InputStream is) method to read the contents of the file:

import java.io.IOException;
import java.io.InputStream;
import java.text.DecimalFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.LinkedHashMap;
import java.util.Map;
  
import org.apache.log4j.Logger;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.DateUtil;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.usermodel.Sheet;
import org.apache.poi.ss.usermodel.Workbook;
import org.apache.poi.ss.usermodel.WorkbookFactory;
  
/ **
 * Operation Excel spreadsheet functionality class
 * /
public class ExcelReader {
    private static DecimalFormat df = new DecimalFormat ( "0");
    private final static Logger log = Logger.getLogger (ExcelReader.class);
    private Workbook wb = null;
    private Sheet sheet = null;
    private Row row = null;
  
    / **
    * Read the contents of an Excel spreadsheet header
    * @param InputStream
    * @return String array header content
    * @throws IOException
    * /
    public String [] readExcelTitle (InputStream is) throws Exception {
        try {
            wb = WorkbookFactory.create (is);
        } Catch (IOException e) {
            log.error ( "read the contents of Excel spreadsheet header abnormal", e);
            throw e;
        }
        sheet = wb.getSheetAt (0);
        row = sheet.getRow (0);
        The total number of columns // heading
        int colNum = row.getPhysicalNumberOfCells ();
        String [] title = new String [colNum];
        for (int i = 0; i             title [i] = getCellFormatValue (row.getCell (i));
        }
        log.info ( "read the contents of the complete Excel table header");
        return title;
    }
  
    / **
    * Read Excel data content
    * @param InputStream
    * @return Map Map object that contains the cell data content
    * @throws IOException
    * /
    public Map readExcelContent (InputStream is) throws Exception {
        Map content = new LinkedHashMap ();
        String str = "";
        try {
            wb = WorkbookFactory.create (is);
        } Catch (IOException e) {
            log.error ( "read Excel data content", e);
            throw e;
        }
        sheet = wb.getSheetAt (0);
        // Get the total number of rows
        int rowNum = sheet.getLastRowNum ();
        row = sheet.getRow (0);
        int colNum = row.getPhysicalNumberOfCells ();
        // Body content should start from the second row, first row header title
        for (int i = 1; i <= rowNum; i ++) {
            row = sheet.getRow (i);
            int j = 0;
            while (j                 // The data contents of each cell with a "-" separated, String class replace when needed for future use () method to restore data
                // You can also set the data to each cell in a javabean attribute, then you need to create a javabean
                // Str + = getStringCellValue (row.getCell ((short) j)). Trim () +
                // "-";
                if (row! = null) {
                    . Str + = getCellFormatValue (row.getCell (j)) trim () + ",";
                } Else {
                    str + = "" + ",";
                }
                j ++;
            }
            content.put (i, str.substring (0, str.length () - 1));
            str = "";
        }
        log.info ( "read Excel data content complete");
        return content;
    }
  
    / **
    * Set the type of data based on Cell
    * @param Cell
    * @return
    * /
    private String getCellFormatValue (Cell cell) {
        String cellvalue = "";
        if (cell! = null) {
            Analyzing the current // Type Cell
            switch (cell.getCellType ()) {
            // If the current Type Cell is NUMERIC
            case Cell.CELL_TYPE_NUMERIC:
            case Cell.CELL_TYPE_FORMULA: {
                // Determine whether the current cell to Date
                if (DateUtil.isCellDateFormatted (cell)) {
                    // If the Date type is converted to a Data Format
  
                    // Method 1: The data format is like this with every minute of the time: 2015-12-18 0:00:00
                    // Cellvalue = cell.getDateCellValue () toLocaleString ().;
  
                    // Method 2: data format is like this when every minute without tape: 2011-10-12
                    Date date = cell.getDateCellValue ();
                    SimpleDateFormat sdf = new SimpleDateFormat ( "yyyy-MM-dd");
                    cellvalue = sdf.format (date);
  
                }
                // If it is a pure digital
                else {
                    // Get the current value of the Cell
                    cellvalue = String.valueOf (df.format (cell.getNumericCellValue ()));
                }
                break;
            }
            // If the current Type Cell is STRIN
            case Cell.CELL_TYPE_STRING:
                // Get the current Cell strings
                cellvalue = cell.getRichStringCellValue () getString ().;
                break;
            // Default value of Cell
            default:
                cellvalue = "";
            }
        } Else {
            cellvalue = "";
        }
        return cellvalue;
  
    }
}

Simple example code, the actual use of exception handling mechanism should be added:
12345678910111213 FileInputStream is = new FileInputStream (file);
    ExcelReader excelReader = new ExcelReader ();
    String [] title = excelReader.readExcelTitle (is); // read the file title (non-file name, but the first line of the file)
    for (String str: title) {
    System.out.println (str);
    }
    is.close ();
    is = new FileInputStream (file);
    Map map = excelReader.readExcelContent (is); // read the contents of the file
    for (int i = 1; i <= map.size (); i ++) {
        System.out.println (map.get (i));
    }
    is.close ();
     
         
         
         
  More:      
 
- MongoDB polymerization being given (Database)
- Java string equal size comparison (Programming)
- CentOS yum install LAMP (Server)
- Manage SQL Server services login (start) account and password (Database)
- Make full use of the Raspberry Pi SD card space (Linux)
- Ubuntu 14.04 Docker installation (Linux)
- iTerm - let your command line can also be colorful (Linux)
- RedHat 6 xrdp use remote login interface (Linux)
- CentOS How to mount the hard drive (Linux)
- Learning the Linux powerful network management capabilities (Linux)
- Use Docker containers (Linux)
- How to use static, class, abstract method in Python (Programming)
- How to install Ubuntu California - the calendar application (Linux)
- Linux Disk and File Management (Linux)
- IP configuration under Linux (Linux)
- C ++ sequence containers basics summary (Programming)
- Oracle Database routine inspection (Database)
- How common Linux automation tasks (Server)
- Interesting example of Linux Sort command (Linux)
- Linux formatted partition error Could not stat / dev / sda No such file or directory Solution (Linux)
     
           
     
  CopyRight 2002-2022 newfreesoft.com, All Rights Reserved.