excel导入简单实例

excel导入

引包

<!-- excel导入导出  依赖 -->
<dependency>
	<groupId>org.apache.poi</groupId>
	<artifactId>poi</artifactId>
	<version>RELEASE</version>
</dependency>
<dependency>
	<groupId>org.apache.poi</groupId>
	<artifactId>poi-ooxml</artifactId>
	<version>RELEASE</version>
</dependency>

代码示例

@Test
	public void import01(){		
		System.out.println("--------------------");
		
		Workbook workbook=null;
		try {
			String filePath="C:\\Users\\Desktop\\小蜜蜂系统录入必填项.xlsx";
			InputStream inputStream = new FileInputStream(filePath);
			workbook = WorkbookFactory.create(inputStream);
			Sheet sheet = workbook.getSheetAt(0);
	        //获取sheet的行数
	        int rows = sheet.getLastRowNum()+1;
	        System.out.println("------------rows:"+rows);
	        
	        List<Object[]> list = new ArrayList<Object[]>();
	        for (int i = 0; i < rows; i++) {
	            //过滤表头行
//	            if (i == 0) {
//	                continue;
//	            }
	            //获取当前行的数据
	            Row row = sheet.getRow(i);
	            Object[] objects = new Object[row.getLastCellNum()];
	            for (Cell cell : row) {	
	            	String cellType = cell.getCellType().toString();
	            	int index=cell.getColumnIndex();
	            	if("NUMERIC".equals(cellType)){
	            		objects[index] = (int) cell.getNumericCellValue();
	            	}else if("STRING".equals(cellType)){
	            		objects[index] = cell.getStringCellValue();
	            	}else if("BOOLEAN".equals(cellType)){
	            		objects[index] = cell.getBooleanCellValue();
	            	}else if("ERROR".equals(cellType)){
	            		objects[index] = cell.getErrorCellValue();
	            	}
	            	System.out.println("------index:"+index+"---"+objects[index]);
	            }
            	list.add(objects);
	        }
	        System.out.println("导入文件解析成功!");
	        System.out.println("------list长度:"+list.size());
		} catch (Exception e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		} 
	}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值