Hi, I use netbeans 6.9 I want to use org.codehaus.staxmate.dom package but in does not exist. How can I add this package?
+1
A:
This package is not included in standard Java Runtime Environment. So,
- you either have to download corresponding jar manually, and specify as library in your project configuration
- or have to use some build manager in your project (for example, Maven) and specify dependency on corresponding package
Kel
2010-10-29 19:28:06
+1
A:
- Download the jar files from http://staxmate.codehaus.org/
- Open up Netbeans and add the jars that you fetched from 1
- to add the jars, open up Tools -> Libraries and create a new class library. Finally, add this library to the project's "compile" tab under its libraries section
- alternately you can simply right click the project -> properties and then add the jars under the "compile" tab under libraries
Generally, make it point to look for the jar file names here : http://www.jarfinder.com/
That will help you decide the jar file needed and where to download it from as well :)
madhurtanwani
2010-10-29 19:35:57
I got it, thank you very much
Dev. developer
2010-10-29 20:05:37