如何在groovy中读取XML文件?
我正在尝试使用下面的代码行在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用以下任意一个:
"C:/2011XmlLog20110524_0623"
"C:\\2011XmlLog20110524_0623"
反斜杠是 转义字符。
Use any of:
"C:/2011XmlLog20110524_0623"
"C:\\2011XmlLog20110524_0623"
Backslash is an escape character.