Android 使用 retrofit2 解析XML响应

处理JSON使用 converter-gson,一下子来个XML,搜索依赖发现有个 converter-simplexml,IDE提示 converter-simplexml 已经过时,然后改用 converter-jaxb,后来到github看文档才知道 converter-jaxb 在 Android 上用不了,simplexml 又提示不支持XML1.1,再一看文档,Android上使用 simplexml 要去除几个依赖,然后就搞定了,kts配置如下:

    implementation("com.squareup.retrofit2:converter-simplexml:2.9.0") {
        exclude( module= "stax")
        exclude (module= "stax-api")
        exclude (module = "xpp3")
    }

groovy配置如下:

implementation('com.squareup.retrofit2:converter-simplexml:2.9.0') {
    exclude module: 'stax'
    exclude module: 'stax-api'
    exclude module: 'xpp3'
}

最后附上几个参考链接:

Simple XML Converter

Parsing XML using Retrofit2 in Kotlin 

你可能感兴趣的:(Android开发,android,xml,retrofit)