我正在尝试读取groovy中的XML文件,其中包含以下几行代码
def xml=new XmlSlurper().parse("C:2011XmlLog20110524_0623")
xml.Document.BillID.each{
println it}
虽然我的C驱动器中有文件,但我收到了找不到文件的错误。。有语法错误吗?。。
提前感谢
Laxmi
使用以下任一项:
"C:/2011XmlLog20110524_0623"
"C:\2011XmlLog20110524_0623"
Backslash是一个转义字符。