1

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?

StaxMan
  • 113,358
  • 34
  • 211
  • 239
sahar
  • 569
  • 7
  • 16
  • 29

3 Answers3

2
  1. Download the jar files from http://staxmate.codehaus.org/
  2. 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
1

Download staxmate from:

The Staxmate Web Site.

bmargulies
  • 97,814
  • 39
  • 186
  • 310