What is the jar file I should download and from where?

16,490

javax.xml, org.w3c and java.io packages resides in the classes.jar file in your JDK.

You shouldn't reference any external .jar file as this should be automatically referenced by your editor.

Share:
16,490
user2019510
Author by

user2019510

Updated on June 22, 2022

Comments

  • user2019510
    user2019510 almost 2 years
    import javax.xml.parsers.DocumentBuilderFactory;
        import javax.xml.parsers.DocumentBuilder;
        import org.w3c.dom.Document;
        import org.w3c.dom.NodeList;
        import org.w3c.dom.Node;
        import org.w3c.dom.Element;
        import java.io.File;
    

    I woud like to work with the above. so,what is jar file I should download and from where??

  • user2019510
    user2019510 over 10 years
    thank you for very much for your recommendation could you please drop a useful links to start with jdom or xom?
  • Michael Kay
    Michael Kay over 10 years
    Elliotte Rusty Harold's book on programming with Java and XML is well worth reading; after that, just use Google.