gpt4 book ai didi

java - XMLResourceParser,我不确定如何阅读我拥有的 XML

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:38:13 27 4
gpt4 key购买 nike

<分区>

这是我的 XML 文件的示例:

<?xml version="1.0" encoding="utf-8"?>
<assurances>
<assurance hasReference="true">
<message>You're Awesome!</message>
<reference>Genesis 1:26</reference>
</assurance>
<assurance hasReference="true">
<message>Your Wonderfull!</message>
<reference>Genesis 1:26</reference>
</assurance>
</assurances>

我正在使用这样的代码来尝试检索它:

int eventType = -1;
while(eventType != XmlResourceParser.END_DOCUMENT)
{
XmlResourceParser assurances = getResources().getXml(R.xml.assurances);
String name = assurances.getText();
Log.d(TAG, name);

try {
if (assurances.getEventType() == XmlResourceParser.START_TAG) {
String s = assurances.getName();

if (s.equals("assurance")) {
String strMessage = assurances.getAttributeValue(null, "message");
String strReference = assurances.getAttributeValue(null, "reference");

Log.d(TAG, strMessage);
Log.d(TAG, strReference);
}
}
} catch (XmlPullParserException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}

它没有获取数据,我不确定从这里去哪里。

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com