Android FileUtils 文件操作類

来源:https://www.cnblogs.com/94xiyang/archive/2018/07/30/9366340.html
-Advertisement-
Play Games

系統路徑 文件操作 資源文件assets和RW res/raw:文件會被映射到R.java文件中,訪問的時候直接通過資源ID訪問,沒有有目錄結構 assets:不會映射到R.java文件中,通過AssetManager來訪問,能有目錄結構 從資源文件中獲取Bitmap ...


系統路徑

Context.getPackageName();           // 用於獲取APP的所在包目錄
Context.getPackageCodePath();       //來獲得當前應用程式對應的apk文件的路徑
Context.getPackageResourcePath();   // 獲取該程式的安裝包路徑
Context.getDatabasePath();          //返回通過Context.openOrCreateDatabase創建的資料庫文件

Environment.getDataDirectory().getPath();          // 獲得根目錄/data
Environment.getDownloadCacheDirectory().getPath();     //獲得緩存目錄/cache
Environment.getExternalStorageDirectory().getPath();   //獲得SD卡目錄/mnt/sdcard
Environment.getRootDirectory().getPath();           // 獲得系統目錄/system
//File.separator 代表 "/"

 

文件操作

String path = File.getPath();//獲得文件或文件夾的絕對路徑
String path = File.getAbsoultePath();//獲得文件或文件夾的相對路徑

String parentPath = File.getParent();//獲得文件或文件夾的父目錄

String Name = File.getName();//獲得文件或文件夾的名稱

File.mkDir(); //建立文件夾
File.createNewFile();//建立文件

File[] files = File.listFiles();//列出文件夾下的所有文件和文件夾名

File.isDirectory();//true是文件夾,false是文件

File.renameTo(dest);//修改文件夾和文件名

File.delete();//刪除文件夾或文件

 

資源文件assets和RW

res/raw:文件會被映射到R.java文件中,訪問的時候直接通過資源ID訪問,沒有有目錄結構

assets:不會映射到R.java文件中,通過AssetManager來訪問,能有目錄結構

//raw: 
InputStream is =getResources().openRawResource(R.raw.filename);  

//assets: 
AssetManager am =  getAssets();   
InputStream is = am.open("filename");

 

從資源文件中獲取Bitmap

Bitmap bmp=BitmapFactory.decodeResource(getResources(), R.drawable.ico);

FileUtils文件操作類
public class FileUtils {

    //檢查SDCard存在並且可以讀寫
    public static boolean isSDCardState(){
        return Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED);
    }

    /**
     * 判斷文件是否已經存在
     *@param fileName 要檢查的文件名
     * @return boolean, true表示存在,false表示不存在
     */
    public static boolean isFileExist(String fileName) {
        File file = new File("絕對路徑" + fileName);
        return file.exists();
    }

     /**
     * 新建目錄
     * @param path 目錄的絕對路徑
     * @return 創建成功則返回true
     */
    public static boolean createFolder(String path){
        File file = new File(path);
        return file.mkdir();
    }

    /**
     * 創建文件
     *@param path 文件所在目錄的目錄名
     * @param fileName 文件名
     * @return 文件新建成功則返回true
     */
    public static boolean createFile(String path, String fileName) {
        File file = new File(path + File.separator + fileName);
        if (file.exists()) {
            return false;
        } else {
            try {
                return file.createNewFile();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
        return false;
    }

    /**
     * 刪除單個文件
     * @param path 文件所在的絕對路徑
     * @param fileName 文件名
     * @return 刪除成功則返回true
     */
    public static boolean deleteFile(String path, String fileName) {
        File file = new File(path + File.separator + fileName);
        return file.exists() && file.delete();
    }

    /**
     * 刪除一個目錄(可以是非空目錄)
     * @param dir 目錄絕對路徑
     */
    public static boolean deleteDirection(File dir) {
        if (dir == null || !dir.exists() || dir.isFile()) {
            return false;
        }
        for (File file : dir.listFiles()) {
            if (file.isFile()) {
                file.delete();
            } else if (file.isDirectory()) {
                deleteDirection(file);//遞歸
            }
        }
        dir.delete();
        return true;
    }

    /**
     * 將字元串寫入文件
     *@param text  寫入的字元串
     * @param fileStr 文件的絕對路徑
     * @param isAppend true從尾部寫入,false從頭覆蓋寫入
     */
    public static void writeFile(String text, String fileStr, boolean isAppend) {
        try {
            File file = new File(fileStr);
            File parentFile = file.getParentFile();
            if (!parentFile.exists()) {
                parentFile.mkdirs();
            }
            if (!file.exists()) {
                file.createNewFile();
            }
            FileOutputStream f = new FileOutputStream(fileStr, isAppend);
            f.write(text.getBytes());
            f.close();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
     }

    /**
     * 拷貝文件
     *@param srcPath 絕對路徑
     * @param destDir 目標文件所在目錄
     * @return boolean true拷貝成功
     */
    public static boolean copyFile(String srcPath, String destDir){
        boolean flag = false;
        File srcFile = new File(srcPath); // 源文件
        if (!srcFile.exists()){
            Log.i("FileUtils is copyFile:","源文件不存在");
            return false;
        }
        // 獲取待複製文件的文件名
        String fileName = srcPath.substring(srcPath.lastIndexOf(File.separator));
        String destPath = destDir + fileName;
        if (destPath.equals(srcPath)){
            Log.i("FileUtils is copyFile:","源文件路徑和目標文件路徑重覆");
            return false;
        }
        File destFile = new File(destPath); // 目標文件
        if (destFile.exists() && destFile.isFile()){
            Log.i("FileUtils is copyFile:","該路徑下已經有一個同名文件");
            return false;
        }
        File destFileDir = new File(destDir);
        destFileDir.mkdirs();
        try{
            FileInputStream fis = new FileInputStream(srcPath);
            FileOutputStream fos = new FileOutputStream(destFile);
            byte[] buf = new byte[1024];
            int c;
            while ((c = fis.read(buf)) != -1) {
                fos.write(buf, 0, c);
            }
            fis.close();
            fos.close();
            flag = true;
        }catch (IOException e){
            e.printStackTrace();
        }
        return flag;
    }

    /**
     * 重命名文件
     *@param oldPath 舊文件的絕對路徑
     * @param newPath 新文件的絕對路徑
     * @return 文件重命名成功則返回true
     */
    public static boolean renameTo(String oldPath, String newPath){
        if (oldPath.equals(newPath)){
            Log.i("FileUtils is renameTo:","文件重命名失敗:新舊文件名絕對路徑相同");
            return false;
        }
        File oldFile = new File(oldPath);
        File newFile = new File(newPath);

        return oldFile.renameTo(newFile);
    }

    /**
     * 計算某個文件的大小
     *@param path 文件的絕對路徑
     *@return 文件大小
     */
    public static long getFileSize(String path){
        File file = new File(path);
        return file.length();
    }

    /**
     *計算某個文件夾的大小
     *@param  file 目錄所在絕對路徑
     * @return 文件夾的大小
     */
    public static double getDirSize(File file) {
        if (file.exists()) {
            //如果是目錄則遞歸計算其內容的總大小
            if (file.isDirectory()) {
                File[] children = file.listFiles();
                double size = 0;
                for (File f : children)
                    size += getDirSize(f);
                return size;
            } else {//如果是文件則直接返回其大小,以“兆”為單位
                return (double) file.length() / 1024 / 1024;
            }
        } else {
            return 0.0;
        }
    }

    /**
     * 獲取某個路徑下的文件列表
     * @param path 文件路徑
     * @return 文件列表File[] files
     */
    public static File[] getFileList(String path) {
        File file = new File(path);
        if (file.isDirectory()){
            File[] files = file.listFiles();
            if (files != null){
                return files;
            }else{
                return null;
            }
        }else{
            return null;
        }
    }

    /**
     * 計算某個目錄包含的文件數量
     *@param path 目錄的絕對路徑
     * @return  文件數量
     */
    public static int getFileCount(String path){
        File directory = new File(path);
        File[] files = directory.listFiles();
        return files.length;
    }

    /**
     * 獲取SDCard 總容量大小(MB)
     *@param path 目錄的絕對路徑
     * @return 總容量大小
     * */
    public long getSDCardTotal(String path){

        if(null != path&&path.equals("")){

            StatFs statfs = new StatFs(path);
            //獲取SDCard的Block總數
            long totalBlocks = statfs.getBlockCount();
            //獲取每個block的大小
            long blockSize = statfs.getBlockSize();
            //計算SDCard 總容量大小MB
            return totalBlocks*blockSize/1024/1024;

        }else{
            return 0;
        }
    }

    /**
     * 獲取SDCard 可用容量大小(MB)
     *@param path 目錄的絕對路徑
     * @return 可用容量大小
     * */
    public long getSDCardFree(String path){

        if(null != path&&path.equals("")){

            StatFs statfs = new StatFs(path);
            //獲取SDCard的Block可用數
            long availaBlocks = statfs.getAvailableBlocks();
            //獲取每個block的大小
            long blockSize = statfs.getBlockSize();
            //計算SDCard 可用容量大小MB
            return availaBlocks*blockSize/1024/1024;

        }else{
            return 0;
        }
    }
}

 

 

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 1.測試盜鏈(www.html2.com 盜取 www.html5.com的圖片) 2.防止盜鏈 符合盜鏈 —— 重寫 說明:if ($invalid_referer) {,if的後面是有空格的,如果沒有會配置錯誤,這個要留意;valid_referers這句後面還可以繼續補充允許的主機名 **** ...
  • Windows下的Nessus安裝與啟動 一、安裝 在https://www.tenable.com/downloads/nessus下載對應windows版本 雙擊安裝,完成後,訪問 https://localhost:8834/#/ 會出現此站點不安全的提示,點擊詳細信息,轉到此網頁 設置用戶名 ...
  • 1. 打開firewalld防火牆 2. 添加防火牆規則(對指定ip開放指定埠) (以下紅色字體需要根據實際情況修改) (1) Postgresql埠設置。允許192.168.142.166訪問5432埠 (2)redis埠設置。允許192.168.142.166訪問6379埠 (3)be ...
  • 出現這個問題是因為yum在安裝包的過程中,雖然已經聯網,但是沒法解析遠程包管理庫對應的功能變數名稱,所以我們只需要在網路配置中添加上DNS對應的ip地址即可。 解決參考鏈接:https://blog.csdn.net/qq_23212697/article/details/69305822 再次執行命令: ...
  • 打一個比較形象的比喻,把APP比作我們的人體,把胳膊、大腿、心、肝、肺這些人體器官比作組件,各個器官分別負責他們各自的功能,但是他們之間也有主次之分,試想我們的胳膊、大腿等是不能獨立完成某個任務的,必須需要心、肺、肝、膽等的能量支持,那麼可以把胳膊、大腿這種功能性器官比作業務組件,把我們的心、肝、脾 ...
  • 女孩:BroadcastReceiver是什麼呀? 男孩:Broadcast是廣播的意思,在Android中應用程式之間的傳輸信息的機制,BroadcastReceiver是接收廣播通知的組件,廣播和廣播接收器是Android中需要瞭解的,那麼怎麼樣去瞭解呢~ 廣播,大家應該可以理解,我們在學校做眼 ...
  • 1.使用 工具欄 -> Analyze -> Inspect Code… 點擊 Inspect Code 後會彈出檢查範圍的對話框: 預設是檢查整個項目,我們可以點擊 Custom scope 自定義檢查範圍。 點擊右邊的下拉框,會出現以下選擇: 分別有: Project Files:所有項目文件 ...
  • 安裝APK 發送請求獲取輸入流 解析XML文件 可以開始下載 跟蹤下載進度 下載完畢啟動安裝 獲取項目包名 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...