简体   繁体   中英

How to read excel(.xlsx) in java using poi?

I am trying to read excel in java.I have following code.

import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.Iterator;
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.xssf.usermodel.XSSFWorkbook;

public class Test {
    public static void main(String[] args) throws IOException {
        String fname = "D:\\Test.xlsx"; // or "C:\\Test.xls" C:\\SDI-XL.xls
        InputStream inp = new FileInputStream(fname);
        Workbook  wb = new XSSFWorkbook(inp); // Declare XSSF WorkBook
        Sheet sheet = wb.getSheetAt(0); // sheet can be used as common for XSSF and HSSF

        Iterator<Row> rows=sheet.rowIterator();
        while (rows.hasNext()) {
            Row row = (Row) rows.next();
            System.out.println("row#=" + row.getRowNum() + "");
            Iterator cells = row.cellIterator();
            while (cells.hasNext()) {
                Cell cell = (Cell) cells.next();

                switch (cell.getCellType()) {
                case Cell.CELL_TYPE_STRING:
                    System.out.println(cell.getRichStringCellValue().getString());
                    break;
                case Cell.CELL_TYPE_NUMERIC:
                    if (DateUtil.isCellDateFormatted(cell)) {
                        System.out.println(cell.getDateCellValue() + "");
                    } else {
                        System.out.println(cell.getNumericCellValue());
                    }
                    break;
                case Cell.CELL_TYPE_BOOLEAN:
                    System.out.println(cell.getBooleanCellValue() + "");
                    break;
                case Cell.CELL_TYPE_FORMULA:
                    System.out.println(cell.getCellFormula());
                    break;
                default:
                }
            }
        }
        inp.close();
    }
}

I was import the poi.3.6jar and poi.ooxml-3.6 jar. When i am run this program i got following error message.

Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/xmlbeans/XmlException
    at Test.main(Test.java:16)
Caused by: java.lang.ClassNotFoundException: org.apache.xmlbeans.XmlException
    at java.net.URLClassLoader$1.run(URLClassLoader.java:366)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:423)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:356)
    ... 1 more

I dont get it why this error message come.So plz help me.

Add following jar files:

  • poi-3.9.jar
  • poi-ooxml-3.9.jar
  • poi-ooxml-schemas-3.7.jar
  • xmlbeans-2.3.0.jar
  • dom4j-1.6.1.jar

xmlbeans-2.3.0.jar文件添加到您的类路径。

Add

xmlbeans-2.3.0.jar
dom4j-1.6.1.jar 

along with regular POI XMLs, it will surely solve the issue.

Use this : Input String filePath Output is list of list of json objects

Have these dependencies
    <dependency>
        <groupId>org.apache.poi</groupId>
        <artifactId>poi-ooxml</artifactId>
        <version>3.9</version>
    </dependency>
    <dependency>
        <groupId>org.apache.commons</groupId>
        <artifactId>commons-collections4</artifactId>
        <version>4.0</version>
    </dependency>


/**
 * Function reads the input excel and gives list(sheet) of objects(rows of each sheet)
 * @param filePath
 * @return list of list of json objects
 */
public static List<List> excelFileReader(String filePath){

    List<List>totalSheetList=new ArrayList<>();
    XSSFWorkbook workbook= null;
    try {
        workbook = new XSSFWorkbook(filePath);
    } catch (IOException e) {
        e.printStackTrace();
    }

    //iteration for sheets in a workbook
    for(int sheetIndex=0;sheetIndex<workbook.getNumberOfSheets();sheetIndex++){
        XSSFSheet sheet=workbook.getSheetAt(sheetIndex);
        XSSFRow row=null;
        List<JSONObject> singleSheetList=new ArrayList<>();

        //excel header - first row and non-empty
        String[] header=new String[sheet.getRow(0).getPhysicalNumberOfCells()];
        if (sheet.getPhysicalNumberOfRows()!=0 && sheet.getRow(0).getRowNum()==0) {
            row=sheet.getRow(0);
            for(int index=0;index<row.getPhysicalNumberOfCells();index++){
                header[index]=(row.getCell(index).getStringCellValue());
            }
        }

        //if header exists , start reading the values excluding first row (header)
        if(header.length!=0){
            for(int rowIndex=1;rowIndex<sheet.getPhysicalNumberOfRows();rowIndex++){
                row=sheet.getRow(rowIndex);
                HashMap<String,Object> eachRow=new HashMap<>();
                for(int colIndex=0;colIndex<header.length;colIndex++) {
                    String cell = "";
                    if(row.getCell(colIndex)==null){
                        cell="";
                    }else{
                        if(row.getCell(colIndex).getCellType()==Cell.CELL_TYPE_STRING){
                            cell = row.getCell(colIndex).getRichStringCellValue().toString();
                        }else{
                            row.getCell(colIndex).setCellType(Cell.CELL_TYPE_STRING);
                            cell=row.getCell(colIndex).getStringCellValue();
                        }
                    }
                    eachRow.put(header[colIndex], cell);
                }
                JSONObject eachRowJsonObject = new JSONObject(eachRow);
                singleSheetList.add(eachRowJsonObject);
            }
        }
        totalSheetList.add(singleSheetList);
    }
    return totalSheetList;
}

Add following jars and add them to your classpath then run your project.

  1. dom4j-1.6.1-sources.jar
  2. dom4j.jar
  3. log4j-1.2.17.jar
  4. poi-3.5-FINAL.jar
  5. poi-ooxml-3.5-beta5.jar
  6. poi-ooxml-schemas-3.9.jar
  7. xmlbeans-2.3.0.jar

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM