欢迎来到代码驿站!

Android代码

当前位置:首页 > 移动开发 > Android代码

Android清除工程中无用资源文件的两种方法

时间:2021-11-04 10:01:33|栏目:Android代码|点击:

一、调用Android lint命令查找出没有用到的资源,并生成一个清单列表:


命令:lint ?Ccheck “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);
        }
      }
    }
  }
}

我们往往要多次重复执行上面的操作,才能真正彻底的清除工程中无用的资源文件。

上一篇:Android实现3D翻转动画效果

栏    目:Android代码

下一篇:Android实现PDF预览打印功能

本文标题:Android清除工程中无用资源文件的两种方法

本文地址:http://www.codeinn.net/misctech/182318.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有