Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Groovy

Idiom #103 Load XML file into object

Read from the file data.xml and write its contents into the object x.
Assume the XML data is suitable for the type of x.

def x = new XmlSlurper().parse(new File('data.xml'))
using System.Xml.Linq;
XDocument x = XDocument.Load("data.xml");


New implementation...