1

我正在解析一个看起来像这样的 XML 提要:

<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:cc="http://web.resource.org/cc/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:media="http://search.yahoo.com/mrss/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
    <channel>
    ...
    </channel>
</rss>

我想做的一件事是通过 URL 获取所有命名空间并获取关联的前缀以供以后解析。例如,如果我知道 iTunes DTD 位于:http ://www.itunes.com/dtds/podcast-1.0.dtd我想获取相关的前缀。这是我想用来执行此操作的一些代码:

if(parser.getEventType() != START_TAG && !"rss".equalsIgnoreCase(parser.getName())) {
    throw new IllegalStateException();
}

for(int i=0; i<parser.getAttributeCount(); i++) {
    if(!"xmlns".equalsIgnoreCase(parser.getAttributePrefix(i))) {
        continue;
    }
    String namespace = parser.getAttributeName(i);
    String namespaceUrl = parser.getAttributeValue(i);
    if(namespaceUrl.contains("www.itunes.com")) {
        ITUNES_NAMESPACE = namespace;
    } else if(namespaceUrl.contains("www.w3.org/2005/Atom")) {
        ATOM_NAMESPACE = namespace;
    }
 }

但是,此处显示的唯一属性是 rss“版本”属性(getAttributeCount 返回 1 以及“版本”和“2.0”的名称和值)。有没有办法获取命名空间?

4

0 回答 0