首页 > 开发 > 综合 > 正文

SmartUpload在servlet中使用方法

2024-07-21 02:15:06
字体:
来源:转载
供稿:网友
,欢迎访问网页设计爱好者web开发。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());

}
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表