Hi: I am beginner with writing Java code for XML. I know how to write xml documents. What are the XML specific tools and packages that I need? Thanks for the help.
The Java SDK 1.4 now comes with many XML related packages as part of the standard library. Although there are MANY additional XML related toolkits, you can get alot done with the SDK. See the javax.xml.* packages and the org.w3c.dom and org.xml.* packages in the JavaDocs. Bill