设定禁止上传的文件(通过扩展名限制),禁止上传带有exe,bat, jsp,htm,html扩展名的文件和没有扩展名的文件。
smartupload my
smartupload = new
smartupload();
my
smartupload.initialize(
Servlet.get
ServletConfig(), request,response);
// 设定上传限制
// 1.限制每个上传文件的最大长度。
// my
smartupload.setMaxFileSize(10000);
// 2.限制总上传数据的长度。
// my
smartupload.setTotalMaxFileSize(20000);
// 3.设定允许上传的文件(通过扩展名限制),仅允许doc,txt文件。
// my
smartupload.setAllowedFilesList("doc,txt");
// 4.设定禁止上传的文件(通过扩展名限制),禁止上传带有exe,bat,
JSP,htm,html扩展名的文件和没有扩展名的文件。
// my
smartupload.setDeniedFilesList("exe,bat,
JSP,htm,html,,");
my
smartupload.upload();
//读取其它数据
Request req = my
smartupload.getRequest();
String title = req.getParameter("title");
//保存文件
for (int i = 0; i < my
smartupload.getFiles().getCount(); i++) {
com.
JSPsmart.upload.File file = my
smartupload.getFiles().getFile(i);
if (file.isMissing()) continue;
file.saveAs(savePath + file.getFileName());
}