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?
i could not find org.codehaus.staxmate.dom package
159 Views Asked by sahar At
3
There are 3 best solutions below
0

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
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 :)