首先,在Struts.xml文件中定义默认的最大的大小。 <!-- 定义文件上传大小 –>
内置校验器示例代码:
//验证大小
public boolean checkSize(File file){
if (file.length()<20971520) {//小于10M
return true;
}
return false;
}
…
首先,在Struts.xml文件中定义默认的最大的大小。 <!-- 定义文件上传大小 –>
//验证大小
public boolean checkSize(File file){
if (file.length()<20971520) {//小于10M
return true;
}
return false;
}
…