Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用以下代码行以 groovy 读取 XML 文件
def xml=new XmlSlurper().parse("C:\2011XmlLog20110524_0623") xml.Document.BillID.each{ println it}
尽管我的 C 驱动器中有文件,但我收到文件未找到错误..那里有任何语法错误吗?..
预先感谢,
拉克西米
使用任何一个:
"C:/2011XmlLog20110524_0623"
"C:\\2011XmlLog20110524_0623"
反斜杠是一个转义字符。