码迷,mamicode.com
首页 > 其他好文 > 详细

使用poi读取xlsx中的数据

时间:2016-08-28 20:58:53      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:

excel中的内容见下图:

技术分享

详细代码:

package dataprovider;

import java.io.FileInputStream;
import java.io.InputStream;

import org.apache.poi.xssf.usermodel.XSSFRow;
import org.apache.poi.xssf.usermodel.XSSFSheet;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;

public class ExcelRead 
{
    public void getValues(String filePath ) 
    {
        String values = null;
        try{
        	InputStream is = new FileInputStream(filePath);
        	// 构造 XSSFWorkbook 对象,strPath 传入文件路径  
        	XSSFWorkbook xwb = new XSSFWorkbook(is);  
        	// 读取第一章表格内容  
        	XSSFSheet sheet = xwb.getSheetAt(0);  
        	// 定义 row、cell  
        	XSSFRow row;  
        	String cell;  
        	// 循环输出表格中的内容  
        	for (int i = sheet.getFirstRowNum()+1; i < sheet.getPhysicalNumberOfRows(); i++) {  
        	    row = sheet.getRow(i);  
        	    for (int j = row.getFirstCellNum(); j < row.getPhysicalNumberOfCells(); j++) {  
        	        // 通过 row.getCell(j).toString() 获取单元格内容,  
        	        cell = row.getCell(j).toString();  
        	        System.out.print(cell + "\t");  
        	    }  
        	    System.out.println("");  
        	} 
            }catch(Exception e) {
                System.out.println("已运行xlRead() : " + e );
            }
    }
    public static void main(String args[]) 
    {
        String filePath="D:\\eclipse workspace\\TestNg\\tt_test.xlsx";
        ExcelRead er = new ExcelRead();
        er.getValues(filePath);
    }
}

结果:

技术分享

 

使用poi读取xlsx中的数据

标签:

原文地址:http://www.cnblogs.com/HCT118/p/5815809.html

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