如何在groovy中读取XML文件?

发布于 2024-11-09 17:41:12 字数 251 浏览 0 评论 0原文

我正在尝试使用下面的代码行在 groovy 中读取 XML 文件,

def xml=new XmlSlurper().parse("C:\2011XmlLog20110524_0623")  
xml.Document.BillID.each{   
println it}

尽管我的 C 驱动器中有该文件,但我收到文件未找到错误。..那里有任何语法错误吗?..

提前致谢,

Laxmi

I am trying to read XML file in groovy with below lines of code

def xml=new XmlSlurper().parse("C:\2011XmlLog20110524_0623")  
xml.Document.BillID.each{   
println it}

I am getting file not found error though i have the file in my C drive..is there any syntax mistake there?..

With advance thanks,

Laxmi

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

扶醉桌前 2024-11-16 17:41:12

使用以下任意一个:

  • "C:/2011XmlLog20110524_0623"
  • "C:\\2011XmlLog20110524_0623"

反斜杠是 转义字符

Use any of:

  • "C:/2011XmlLog20110524_0623"
  • "C:\\2011XmlLog20110524_0623"

Backslash is an escape character.

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