Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am doing some XML parse and the program works just fine when I package it to a jar, but when I try to run it in NetBeans, it throws a Null Pointer Exception. I have tried debuging it, but I can't see any reason why it would do that.

share|improve this question
4  
And we can't see any reason either unless you post some code. – Don Roby Mar 3 '11 at 1:30
And post the stack trace. – Tim Bender Mar 3 '11 at 1:58
Why are you trying to run it in NetBeans as loose class files & resources? Throw an Ant build file into the mix to compile & Jar the project each time you want to run it - then forget about the original problems (is my advice). – Andrew Thompson Mar 3 '11 at 5:33

closed as not a real question by Don Roby, Software Monkey, Tim Bender, jzd, Shoban Mar 3 '11 at 18:27

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

More than likely whatever you're using to package the jar knows about a dependency on jdom, but Netbeans doesn't. Give us the full stacktrace of the NullPointer, what type of Netbeans project it is, how you're running it and what your build tool is you're using to package the jar.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.