Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android清除工程中無用資源文件的兩種方法

Android清除工程中無用資源文件的兩種方法

編輯:關於Android編程

一、調用Android lint命令查找出沒有用到的資源,並生成一個清單列表:


命令:lint –check “UnusedResources” [project_path] > result.txt
執行完之後會生成一個清單文件,內容如下:

二、使用代碼自動刪除無用的文件:

public class DelAction
{
  public static void main(String[] args)
    throws IOException
  {
    String projectPath = "***";
    BufferedReader reader = new BufferedReader(new FileReader("result路徑"));
    String line;
    int count = 0;
    while ((line = reader.readLine()) != null)
    {
      if (line.contains("UnusedResources") && !line.contains("res/value") && !line.contains("appcompat"))
      {
        count++;
        int end = line.indexOf(":");
        if (end != -1)
        {
          String file = line.substring(0, end);
          String f = projectPath + file;
          boolean flag =
            new File("【拼出文件完整路徑】" + f.replace("***", "")).delete();          System.out.println("【拼出文件完整路徑】" + f + "=>del=>" + flag);
        }
      }
    }
  }
}

我們往往要多次重復執行上面的操作,才能真正徹底的清除工程中無用的資源文件。

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持本站。

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved