码迷,mamicode.com
首页 > 编程语言 > 详细

JAVA:通过poi读取excel

时间:2016-12-13 07:29:15      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:input   row   getc   代码   put   get   als   xlsx   ret   

POI是一个apache开源的jar包,可以通过搜索 java POI找到官网,并下载开发包.

包含的功能:

可以读取excel2003,2007,2010等。

读取excel2007/2010的代码:

public static boolean isNumeric(String str) {
    for (int i = 0; i < str.length(); i++) {
        if (!Character.isDigit(str.charAt(i))) {
            return false;
        }
    }
    return true;
}

public static List<List<String>> readXlsx(String path) throws Exception {
    InputStream is = new FileInputStream(path);
    @SuppressWarnings("resource")
    XSSFWorkbook xssfWorkbook = new XSSFWorkbook(is);
    List<List<String>> result = new ArrayList<>();

    for (int sheetIx = 0; sheetIx < xssfWorkbook.getNumberOfSheets(); sheetIx++) {
        XSSFSheet xssfSheet = xssfWorkbook.getSheetAt(sheetIx);
        if (xssfSheet == null)
            continue;

        for (int rowNum = 1; rowNum <= xssfSheet.getLastRowNum(); rowNum++) {
            XSSFRow xssfRow = xssfSheet.getRow(rowNum);

            int minColIx = xssfRow.getFirstCellNum();
            int maxColIx = xssfRow.getLastCellNum();
            List<String> rowList = new ArrayList<>();
            for (int colIx = minColIx; colIx < maxColIx; colIx++) {
                XSSFCell cell = xssfRow.getCell(colIx);
                if (cell == null)
                    continue;
                rowList.add(cell.toString());
            }
            result.add(rowList);
        }
    }
    return result;
}

 

JAVA:通过poi读取excel

标签:input   row   getc   代码   put   get   als   xlsx   ret   

原文地址:http://www.cnblogs.com/yy3b2007com/p/6168365.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!