CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Jan 2006
    Location
    Baltimore, Maryland, USA
    Posts
    104

    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?
    -= the best is yet to come =-

  2. #2
    dlorde is offline Elite Member Power Poster
    Join Date
    Aug 1999
    Location
    UK
    Posts
    10,163

    Re: Looking for a Package to import

    Quote Originally Posted by capitolc View Post
    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
    Please use [CODE]...your code here...[/CODE] tags when posting code. If you get an error, please post the full error message and stack trace, if present.

  3. #3
    Join Date
    Apr 2007
    Posts
    425

    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.
    ------
    If you are satisfied with the responses, add to the user's rep!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured