SmartUpload在servlet中使用方法
2008-01-05 10:32:44 来源:WEB开发网核心提示:SmartUpload mySmartUpload = new SmartUpload();mySmartUpload.initialize(servlet.getServletConfig(), request,response);// 设定上传限制// 1.限制每个上传文件的最大长度,// mySmartUploa
SmartUpload mySmartUpload = new SmartUpload();
mySmartUpload.initialize(servlet.getServletConfig(), request,response);
// 设定上传限制
// 1.限制每个上传文件的最大长度。
// mySmartUpload.setMaxFileSize(10000);
// 2.限制总上传数据的长度。
// mySmartUpload.setTotalMaxFileSize(20000);
// 3.设定答应上传的文件(通过扩展名限制),仅答应doc,txt文件。
// mySmartUpload.setAllowedFilesList("doc,txt");
// 4.设定禁止上传的文件(通过扩展名限制),禁止上传带有exe,bat, jsp,htm,Html扩展名的文件和没有扩展名的文件。
// mySmartUpload.setDeniedFilesList("exe,bat,jsp,htm,html,,");
mySmartUpload.upload();
//读取其它数据
Request req = mySmartUpload.getRequest();
String title = req.getParameter("title");
//保存文件
for (int i = 0; i < mySmartUpload.getFiles().getCount(); i++) {
com.jspsmart.upload.File file = mySmartUpload.getFiles().getFile(i);
if (file.isMissing()) continue;
file.saveAs(savePath + file.getFileName());
}
Tags:SmartUpload servlet 使用方法
编辑录入:爽爽 [复制链接] [打 印]更多精彩
赞助商链接