程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> 導入導出-求大神給一個poi的封裝好的工具類

導入導出-求大神給一個poi的封裝好的工具類

編輯:編程綜合問答
求大神給一個poi的封裝好的工具類

就是用的時候傳進去一個實現類方法和excel名字,以前的硬盤丟了,謝謝大神!
(導入)(導出)

最佳回答:


@Test
public void getCheckInPersonList(){
String filePath = new String("E:\2014年龍居山9月考勤.xls");
File file = new File(filePath);
if(file.exists()){
if(file.getName() != null){
String suffix = file.getName().substring(file.getName().lastIndexOf(".")+1);
if("xls".equals(suffix))
for (CheckInPersonBean p : readXLS(file)) {
System.out.println("ID:"+p.getId()+" 單位:"+p.getUnit()+" 姓名:"+p.getName()+"

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved