红联Linux门户
Linux帮助

android删除未使用的资源文件

发布时间:2015-12-31 10:18:43来源:linux网站作者:liujieapache

ubuntu下执行:

lint --check "UnusedResources" Downloads/android_demo/YiBanProj > result.txt 

Downloads/android_demo/YiBanProj为项目的路径result.txt为结果输出文件


执行下面Java代码:

/**
* 删除 未使用的冗余资源(图片 xml布局)
*
* @param b
*
*            false 显示资源列表
*
*            true 显示资源列表 并删除资源
*
* @throws Exception
*/
private static void init(boolean b) throws Exception {
String encoding = "UTF-8"; // 字符格式
//Android工程所在地址
String projectPath="/Downloads/android_demo/YiBanProj";
String filePath1 = "/home/liujie";//result的所在路径
File file = new File(filePath1, "result.txt");//获取result.txt 文件 生成地址
if (file.isFile() && file.exists()) { // 判断文件是否存在
InputStreamReader read = new InputStreamReader(new FileInputStream(file), encoding);// 考虑到编码格式
BufferedReader bufferedReader = new BufferedReader(read);
String line = null;
while ((line = bufferedReader.readLine()) != null) {
if (line.contains("UnusedResources") && !line.contains("res/value") && !line.contains("appcompat")
&& !line.contains("res/xml")) {
// System.out.println(line);
int end = line.indexOf(":");
if (end != -1) {
String file_end = line.substring(0, end);
String f = projectPath + file_end;
System.out.println(f);
if (b) {
new File(f).delete();
System.out.println("删除成功");
}
}
}
}
read.close();
}
}


即可删除文件。


Ubuntu和Mac中Android源码查看工具:http://www.linuxdiyf.com/linux/16824.html

Ubuntu下Chromium for Android源码的编译:http://www.linuxdiyf.com/linux/16223.html

ubuntu15.04编译android源码:http://www.linuxdiyf.com/linux/14709.html

Ubuntu 15.04 Android编译环境:http://www.linuxdiyf.com/linux/11971.html

基于Ubuntu 15.04 LTS编译Android5.1.0源代码:http://www.linuxdiyf.com/linux/11841.html