在Scala中提取XML属性信息

发布于 2024-11-05 10:56:25 字数 190 浏览 0 评论 0原文

我试图迭代 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

北斗星光 2024-11-12 10:56:25

我认为没有更好的方法来做到这一点。如果您需要从 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文