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

link|improve this question

45% accept rate
feedback

1 Answer

up vote 0 down vote accepted

Use any of:

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

Backslash is an escape character.

link|improve this answer
Hi can you please look at a similar question here? – Abhishek Simon Apr 23 at 10:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.