Logo

Programming-Idioms

History of Idiom 103 > diff from v12 to v13

Edit summary for version 13 by Ajay:
[Scala] import word was missing

Version 12

2020-03-10, 18:10:45

Version 13

2020-03-10, 18:12:06

Idiom #103 Load XML file into struct

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

Idiom #103 Load XML file into struct

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

Imports
scala.xml.XML
Imports
import scala.xml.XML
Code
val xml = XML.loadFile("path/yourfile.xml")
Code
val xml = XML.loadFile("path/yourfile.xml")