Struts导入excel (07版和03版)
记得前一阵子找如何用struts标签把excel导入后,实现批量写入数据库的功能,找了好久。。。后来总算找到了,先把07的做好了,03的以后再做。。
前台:
<table border="0" cellspacing="0" cellpadding="0" style=" margin:10px;line-height:30px;" id="importTable">
<!-- 将表单提交给下面的frame(返回的页面,装到下面的frame里) -->
<form id="vehicleImport" name="vehicleImport" method="post" ENCTYPE="multipart/form-data" target="resultFrame">
<tr height="35">
<td align="left">路径:</td>
<td width="230"><s:file name="excelFile" id="excelFile" cssStyle="width:300px"></s:file></td>
</tr>
<tr height="35" align="left">
<td align="right" colspan="2"><input type="button" value="确定" onClick="save()"/><input type="button" value="取消" onClick="cancel()"/></td>
</tr>
</form>
</table>
vehicleImport.action = path+"/vehiclemanage!batchImportVehicle.action";
vehicleImport.submit();
在Action层:
注意先定义一个属性:
private File excelFile;//File对象,目的是获取页面上传的文件
和它的get和set方法。
public String batchImportVehicle() throws FileUploadException{
errorResult.clear(); //先将错误列表清空
System.out.println("批量导入车辆信息");
XSSFWorkbook workbook = null;
if(excelFile!=null){
String path=excelFile.getAbsolutePath();//获取文件的路径
try {
workbook = new XSSFWorkbook(path);//初始化workbook对象
}catch(Exception e){
e.printStackTrace();
}
}
XSSFSheet xSheet = workbook.getSheetAt(0);
int iRow = xSheet.getLastRowNum();
XSSFRow xRow = xSheet.getRow(0);
int iColumn = xRow.getLastCellNum();
if(iRow < 1 || iColumn < 14){
errorResult.add("与文件模板不符,车辆批量导入失败!");
return "importResult";
}
String titleValue = xRow.getCell(0).getStringCellValue();
……
然后就是可怕的列循环,行循环了。。。累死个人。
03的来了:
大致也差不多,就是方法名改变了而已:
HSSFWorkbook workbook = null;
if(excelFile!=null){
String path=excelFile.getAbsolutePath();//获取文件的路径
try {
InputStream is = new FileInputStream(path);
workbook = new HSSFWorkbook(is);
}catch(Exception e){
e.printStackTrace();
}
}
HSSFSheet sheet = (HSSFSheet)workbook.getSheetAt(0);
int iRow = sheet.getPhysicalNumberOfRows(); //获取总共的行数(与07不同)
HSSFRow xRow = sheet.getRow(0); //获取行元素(用此方法,其余解析便与07相同)
int iColumn = xRow.getPhysicalNumberOfCells(); //获取总共的列数(与07不同)
至于循环读取,就一样了。。。。