Android 獲取指定圖片或文件的大小

/** * 獲取指定文件大小    */ public static long getFileSize(File file) throws Exception { long size = 0; if (file.exists()) { FileInputStream fis = null; fis = new FileInputStream(file); siz
相關文章
相關標籤/搜索