Android的XMLPullParser getAttributeValue正在从字符串

时间:2017-12-12 02:55:21

标签: android xml xmlpullparser xmlresourceparser

我有一个XML文档,其中包含带前导零的字符串。当我使用XmlResourceParser迭代XML文件时,我注意到在调用getAttributeValue时修改了带有前导零的字符串,删除了前导零。此功能在过去有效,我在升级到Android Studio 3.x后才注意到。为了让“getAttributeValue”保留前导零,我需要做些什么特别的事情吗?

这是我正在使用的测试XML文件:

<?xml version="1.0" encoding="UTF-8"?>
<FictionalSpies>
<Property Country="Great Britain" Agency="MI6">
    <Item FullName="James Bond" AgentCode="007" />
    <Item FullName="John Wolfgramm" AgentCode="0010" />
    <Item FullName="Sam Johnston" AgentCode="0012" />
</Property>
<Property Country="United States" Agency="CONTROL">
    <Item FullName="Maxwell Smart" AgentCode="86" />
    <Item FullName="Unknown" AgentCode="99" />
    <Item FullName="The Chief" AgentCode="Q" />
</Property>
<Property Country="United States" Agency="MiB">
    <Item FullName="James Darrell Edwards III" AgentCode="J" />
    <Item FullName="Kevin Brown" AgentCode="K" />
    <Item FullName="Derrick Cunningham" AgentCode="D" />
</Property>
</FictionalSpies>

这是列表中每个'间谍'的日志打印输出。正如您所看到的,前三个在AgentCode中丢失了“00”。例如,詹姆斯邦德应该有代理商代码“007”而不是“7”。

D/XMLTest: Great Britain MI6 James Bond 7
D/XMLTest: Great Britain MI6 John Wolfgramm 10
D/XMLTest: Great Britain MI6 Sam Johnston 12
D/XMLTest: United States CONTROL Maxwell Smart 86
D/XMLTest: United States CONTROL Unknown 99
D/XMLTest: United States CONTROL The Chief Q
D/XMLTest: United States MiB James Darrell Edwards III J
D/XMLTest: United States MiB Kevin Brown K
D/XMLTest: United States MiB Derrick Cunningham D

以下是连接到表单上按钮的代码,并迭代生成以前日志消息的XML:

public void buttonOnClick(View v)
{
    int eventType = -1;
    String name;
    String country = null;
    String agency = null;
    String fullName = null;
    String agentCode = null;

    try
    {
        XmlResourceParser xmlRP = getResources().getXml(R.xml.test);

        while (eventType != XmlResourceParser.END_DOCUMENT)
        {
            if (eventType == XmlResourceParser.START_TAG)
            {
                name = xmlRP.getName();
                if (name.contentEquals("Property"))
                {
                    country = xmlRP.getAttributeValue(null, "Country");
                    agency = xmlRP.getAttributeValue(null, "Agency");
                } else if (name.contentEquals("Item"))
                {
                    fullName = xmlRP.getAttributeValue(null, "FullName");
                    agentCode = xmlRP.getAttributeValue(null, "AgentCode");

                    Log.d("XMLTest", country + " " + agency + " " + fullName + " " + agentCode );
                }
            }
            eventType = xmlRP.next();
        }
    } catch (XmlPullParserException e)
    {

    } catch (IOException e)
    {
    }
}

2 个答案:

答案 0 :(得分:0)

new PDVisibleSignDesigner(String filename, InputStream imageStream, int page) 提供所有数据类型的返回值,您将从解析器值获取int Agencycode。所以而不是XmlResourceParser使用getAttributeValue() 只需替换这个

getAttributeIntValue("namespace", "attribute",0)

agentCode = xmlRP.getAttributeValue(null, "AgentCode");

快乐的编码!!

答案 1 :(得分:0)

这是AAPT2中的错误。它已经reported,并且已经在Android Studio 3.4和3.5中修复(请参见https://androidstudio.googleblog.com/2019/01/android-studio-35-canary-2-available.html)。

您还需要升级Android Gradle插件(AGP)(如此处:https://stackoverflow.com/a/35272475

使用以下build.gradle条目,可以更改AAPT2行为以保持前导零:

android {
    aaptOptions {
        additionalParameters "--keep-raw-values"
    }
}

请注意,这可能会增加APK的大小。