|
|
Browse by Tags
All Tags » XML » Java (RSS)
-
XSLT allows you to transform one XML document type to another. For instance, you may have a XML document containing your hours logs for different projects:
XML Hours Log
<HoursLog>
<Entry>
<ProjectName>My XML ...
-
This example will get you started in the exciting world of XML parsing with Java and DOM!
Test.xml
<root>
<foo>someFoo</foo>
<child>
<subchild name="chris">valueOne</subchild>
...
|
|
|