使用命名空间访问XML属性

时间:2010-09-07 14:12:46

标签: xml scala parsing

如何使用命名空间访问属性?我的XML数据采用

形式
val d = <z:Attachment rdf:about="#item_1"></z:Attachment>

但以下内容与属性

不匹配
(d \\ "Attachment" \ "@about").toString

如果我从属性的名称中删除命名空间组件,那么它就可以工作。

val d = <z:Attachment about="#item_1"></z:Attachment>
(d \\ "Attachment" \ "@about").toString

知道如何在Scala中使用命名空间访问属性吗?

2 个答案:

答案 0 :(得分:12)

API文档引用以下语法ns \ "@{uri}foo"

在您的示例中,没有定义命名空间,Scala认为您的属性看起来没有前缀。请参阅d.attributes.getClass

现在,如果你这样做:

val d = <z:Attachment xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" rdf:about="#item_1"></z:Attachment>

然后:

scala> d \ "@{http://www.w3.org/1999/02/22-rdf-syntax-ns#}about"
res21: scala.xml.NodeSeq = #item_1

scala> d.attributes.getClass
res22: java.lang.Class[_] = class scala.xml.PrefixedAttribute

答案 1 :(得分:8)

你可以随时

d match {
  case xml.Elem(prefix, label, attributes, scope, children@_*) =>
}

或在您的情况下也匹配xml.Attribute

d match {
  case xml.Elem(_, "Attachment", xml.Attribute("about", v, _), _, _*) => v
}

// Seq[scala.xml.Node] = #item_1

但是,Attribute根本不关心前缀,因此如果您需要,则需要明确使用PrefixedAttribute

d match {
  case xml.Elem(_, "Attachment", xml.PrefixedAttribute("rdf", "about", v, _), _, _*) => v
}

但是,当存在多个属性时,会出现问题。任何人都知道如何解决这个问题?