struts 用POI导入EXCEL到数据库,跪例子
struts 用POI导入EXCEL到数据库,跪求一个例子从JSP页面上传文件, java中获取文件,有多个sheet,循环得到每
struts 用POI导入EXCEL到数据库,跪求一个例子
从JSP页面上传文件, java中获取文件,有多个sheet,循环得到每个cell的数据 求大神给个例子,是struts的 Struts poi Java
[解决办法]
恩,因为我们jsp中用的<s:file name="upload" .../>
所以我们可以直接用get,set获取文件信息,比如在action中
获取文件,可以这样获取
public File getUpload() {
return upload;
}
public void setUpload(File upload) {
this.upload = upload;
}
获取文件名称,可以这样
public String getUploadFileName() {
return fileName;
}
public void setUploadFileName(String fileName) {
this.fileName = fileName;
}
获取文件类型
public String getUploadContentType() {
return contentType;
}
public void setUploadContentType(String contentType) {
this.contentType = contentType;
}
楼主明白了吧?呵呵