1. 程式人生 > >判斷檔案大小是否可上傳

判斷檔案大小是否可上傳

/*
* 判斷檔案大小是否可上傳*/
public Boolean judgeFileSize(MultipartFile file) throws Exception {
Boolean flag = true;
CommonsMultipartFile cf = (CommonsMultipartFile) file;
DiskFileItem fi = (DiskFileItem) cf.getFileItem();
File f = fi.getStoreLocation();

if (f.exists() && f.isFile()) {
long fileS = f.length();
DecimalFormat df = new DecimalFormat("#.00");
if (fileS < 1073741824) {
String size = df.format((double) fileS / 1048576); // + "MB"
// Integer intSize = Integer;
if (size != null) {
Double intSize = Double.parseDouble(size.trim());//檔案大小
//獲取配置檔案中的檔案最大限制
Properties prop = new Properties();
InputStream inputStream = DbFH.class.getClassLoader().getResourceAsStream("dbconfig.properties");
prop.load(inputStream);
inputStream.close();
String str = prop.getProperty("FileMaxSize").trim();//檔案限制大小
if (intSize > Double.valueOf(str)) { // 不能上傳超過10M的檔案!
flag = false;
}
}
}
}
return flag;
}