Looking for a Package to import
I was trying to import a package so that I can save my DOM object to an XML file. The example I found imported org.apache.xml.serialize.XMLSerializer. To my dismay, it wasn't built-in to my project to use.
Is there a .jar download or something somewhere so I can use this package? or
Do you know another package I could use to save my DOM document to a XML file?
Re: Looking for a Package to import
Quote:
Originally Posted by
capitolc
Is there a .jar download or something somewhere so I can use this package? or
Do you know another package I could use to save my DOM document to a XML file?
There are many different XMLSerializers (see JarFinder), but if you want the Apache version, go to the Apache site and download it. I believe it's part of the Xerces project.
One can think effectively only when one is willing to endure suspense and to undergo the trouble of searching...
J. Dewey
Re: Looking for a Package to import
Another benefit of using Maven to manage projects. I think both Eclipse and IntelliJ have automatic built-in functionality to search all public repos you've defined for searching the class that was imported if not found in the build path of the project. :D