Groovy使用XmlSlurper解析XML文件

public class BytecodeFixPlugin implements Plugin {

    @Override
    void apply(Project project) {
        println "this is my custom plugin ModifyPlugin"
        //AppExtension就是build.gradle中android{...}这一块
        def android = project.extensions.getByType(AppExtension)
        //生产一个类
        if (project.plugins.hasPlugin(AppPlugin)) {
                android.applicationVariants.all { variant ->
                variant.outputs.all { output ->
                    output.processResources.doFirst { pm ->
                        String manifestPath = output.processResources.manifestFile
                        println "=====test manifestPath=====$manifestPath"
                        File file = new File(manifestPath)
                        println "=====test manifestPath file =====" + file.getText();
                        def manifestContent = file.getText()
                        manifestContent = manifestContent.replace('', '')
                        def xml = new XmlSlurper().parseText(manifestContent)
                        xml.declareNamespace('android':'http://schemas.android.com/apk/res/android')
                        println xml.application[0].@"android:name"
                        xml.application[0]."activity".each{
                            println it."@android:name"
                            println "1" + it.'intent-filter'."@action".text()
                            println "2" + it.'intent-filter'."@action"
                            it."intent-filter".each{
                                filter -> println "3 " + filter.action."@android:name" + filter.category."@android:name"
                            }
//                            println "3" + it.intent-filter."@action"   //error
                        }
                        def res = xml.application.activity.find{it."intent-filter".find{filter -> return filter.action.find{filter.action.find{it.'@android:name'.text() == 'android.intent.action.MAIN' }} && filter.category.find{it.'@android:name'.text() == 'android.intent.category.LAUNCHER'}}}.'@android:name'
                        println res.text() + "======"
                        println "=====test xml=====$xml"

                    }
                }
            }
        }
//        project.android.registerTransform(new BytecodeFixTransform(project))
    }
}

注意事项:
1、节点的属性需要遍历;
2、可以直接用节点名称定位节点;
参考文章:
Groovy操作XML:https://www.twblogs.net/a/5ca11c9bbd9eee5b1a06a2b2
Groovy获取开机启动Activity:https://stackoverflow.com/questions/22979277/gradle-how-to-get-values-from-androidmanifest?rq=1

你可能感兴趣的:(Groovy使用XmlSlurper解析XML文件)