在Scala中提取XML属性信息
我试图迭代 scala.xml.Elem 中的所有属性,并以字符串形式获取命名空间、属性名称和值。说实话,我发现有点难;有没有比以下更好的方法:
elem.attributes map { md => (md.getNamespace(elem), md.key, md.value(0).text) }
I'm trying to iterate over all the attributes in a scala.xml.Elem
and get the namespace, attribute name and value as a String. I've found it a bit hard going to be honest; is there a better way to do it than:
elem.attributes map { md => (md.getNamespace(elem), md.key, md.value(0).text) }
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为没有更好的方法来做到这一点。如果您需要从 MetaData 对象中提取大量数据,您可以编写自己的extractor 以获得更好的语法。
I don't think there is a better way to do this. If you need to extract data from MetaData objects a lot, you could write your own extractor to get nicer syntax.