我的XML文档如下所示:
<?xml version="1.0" encoding="iso-8859-1" standalone="yes"?>
<feed xml:base="http://localhost/someApp" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">
<entry>
<id>An ID here</id>
<content type="application/xml">
<m:properties>
<d:Name>The name I want to get</d:Name>
</m:properties>
</content>
</entry>
</feed>
我可以使用以下代码从id
代码中获取“此ID”:
String ATOM_NAMESPACE = "http://www.w3.org/2005/Atom";
RootElement root = new RootElement(ATOM_NAMESPACE, "feed");
Element entry = root.getChild(ATOM_NAMESPACE, "entry");
Element id = entry.getChild(ATOM_NAMESPACE, "id");
id.setEndTextElementListener(new EndTextElementListener(){
public void end(String body){
messages.add(body); // messages = ArrayList<String>
}
});
然而,我似乎无法得到“我想要的名字”。
我添加了这段代码:
String METADATA_NAMESPACE = "http://schemas.microsoft.com/ado/2007/08/dataservices/metadata";
String DATASERVICES_NAMESPACE = "http://schemas.microsoft.com/ado/2007/08/dataservices";
Element content = entry.getChild(ATOM_NAMESPACE, "content");
Element properties = content.getChild(METADATA_NAMESPACE, "properties");
Element name = properties.getChild(DATASERVICES_NAMESPACE, "name");
name.setEndTextElementListener(new EndTextElementListener(){
public void end(String body){
messages.add(body);
}
});
但没有添加消息列表。
我需要做些什么才能获得d:Name
?
答案 0 :(得分:0)
G_H指出问题是我没有把"name"
这有效:
Element name = properties.getChild(DATASERVICES_NAMESPACE, "Name"); // 'Name' instead of 'name'
name.setEndTextElementListener(new EndTextElementListener(){
public void end(String body){
messages.add(body);
}
});