Newbies ehmerson2 Posted May 10, 2012 Newbies Posted May 10, 2012 in scriptmaker : import groovy.xml.DOMBuilder DOMBuilder.parse( new StringReader( "<xml><a>A</a><b>B</b></xml>" ) ).documentElement returns [ xml: null ] In my 'normal' Groovy environment, same code returns : <?xml version="1.0" encoding="UTF-8"?> <xml> <a>A</a> <b>B</b> </xml> any idea ?? em
john renfrew Posted May 14, 2012 Posted May 14, 2012 Try this import groovy.xml.DOMBuilder doc = DOMBuilder.newInstance().parseText( "<xml><a>A</a><b>B</b></xml>" ) return doc.documentElement as String
Recommended Posts
This topic is 4574 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now