Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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??

like image 873
user2019510 Avatar asked Aug 11 '13 15:08

user2019510


People also ask

Where is the JAR file located?

A JAR file may contain a manifest file, that is located at META-INF/MANIFEST. MF . The entries in the manifest file describe how to use the JAR file. For instance, a Classpath entry can be used to specify other JAR files to load with the JAR.

How do I download JAR files?

From the navigation tree, click Configure System > Export Data. The Export Data page is displayed. On the Export Data page, click the file name of the JAR file that you want to download. The File Download dialog is displayed.

Where do JAR files come from?

What is JAR? JAR stands for Java ARchive. It's a file format based on the popular ZIP file format and is used for aggregating many files into one. Although JAR can be used as a general archiving tool, the primary motivation for its development was so that Java applets and their requisite components (.


1 Answers

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.

like image 118
Mena Avatar answered Oct 04 '22 23:10

Mena