- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
JSON to XML
Tue, 2009-03-10, 08:17
I want to transform JSON into XML.
This is to provide both JSON and XML as weather data feeds at
http://www.bom.gov.au
So far, I've parsed the JSON using Derek's
scala.util.parsing.json.JSON.parseFull() parser.
It returns a scala.collection.immutable.Map1 which is an Iterable. So far so
good.
How do I traverse it as a tree?
Mal.
On Tue, Mar 10, 2009 at 8:11 AM, Malcolm Gorman <malcolm.gorman@gmail.com> wrote: