獲取檔案大小工具類

2021-09-07 23:23:46 字數 1046 閱讀 8944

public class filesizeutil  else 

} catch (exception e)

return formetfilesize(blocksize, sizetype);

}/**

* 呼叫此方法自動計算指定檔案或指定資料夾的大小

** @param filepath 檔案路徑

* @return 計算好的帶b、kb、mb、gb的字串

*/public static string getautofileorfilessize(string filepath) else

} catch (exception e)

return formetfilesize(blocksize);

}/**

* 獲取指定檔案大小

** @throws exception

*/public static long getfilesize(file file) throws exception else

return size;

}/**

* 獲取指定資料夾

** @throws exception

*/public static long getfilesizes(file f) throws exception else

}return size;

}/**

* 轉換檔案大小

*/public static string formetfilesize(long files)

if (files < 1024) else if (files < 1048576) else if (files < 1073741824) else

return filesizestring;

}/**

* 轉換檔案大小,指定轉換的型別

*/public static double formetfilesize(long files, int sizetype)

return filesizelong;

}}

java小工具類

小工具集合類 author hp public class utils catch classnotfoundexception e catch sqlexception e return conn 讀取txt檔案 param filepath 檔案路徑 public static void rea...

RectTranform通用位置大小工具

最簡單的就是,直接將anchor先設為center mid,然後再設定位置大小 public static void setanchoredpos recttransform rtf,float x,float y public static void setsize recttransform r...

獲取檔案大小

1 找到檔案所在的絕對路徑。系統路徑 projectpath request.getsession getservletcontext getrealpath 檔案路徑 在上傳檔案的時候,一定會有檔案相對路徑,如果不清楚,可以打斷點然後在本地找到此檔案。檔案相對路徑 filepath 絕對路徑rea...