將Excel文件的數(shù)據(jù)導(dǎo)入系統(tǒng)中的基本步驟同導(dǎo)出邏輯一樣啊终。一般我們是規(guī)定號Excel文檔的統(tǒng)一格式埠忘。
代碼:
public List<StudentJtdjListVO> loadExcel(String xlsPath) throws IOException{
List list=new LinkedList();
FileInputStream fil=new FileInputStream(xlsPath);
//根據(jù)文件流導(dǎo)出Excel得到WorkBook對象
Workbook wb=new HSSFWorkbook(fil);
//獲取Excel文檔中的第一個表單
Sheet sheet=wb.getSheetAt(0);
//對行進(jìn)行迭代
for (Row r:sheet) {
//判斷是否是從第二行開始,因?yàn)榈谝恍惺潜眍^
if (r.getRowNum()<1){
continue;
}
//創(chuàng)建實(shí)體類
StudentJtdjListVO info=new StudentJtdjListVO();
info.setXh(r.getCell(0).getStringCellValue());
//省略
list.add(info);
}
fil.close();
return list;
}