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?
Asked
Active
Viewed 145 times
3 Answers
2
- 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
- 1,199
- 7
- 13
1
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
- 7,680
- 3
- 29
- 39