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

I have a jar file that contains two files in the root
tbs.jar
-parser.dat
-MapScript.txt
I've tried to access them with:
getClass().getResource("parser.dat")
and I also tried:
getClass().getResource("/parser.dat")
but neither works. The class that I'm using, the class I call "getClass" on, belongs to a package that lies in the same jar. So how am I supposed to refer to the files in the same jar, should I perhaps try "../parser.dat"? Nothing I try seems to work.

share|improve this question
2  
getClass().getResource("/parser.dat") should work. Show us the code you're using to access the resource. – JB Nizet Aug 14 '11 at 21:07

1 Answer

up vote 1 down vote accepted

try replacing

getClass().getResource("parser.dat") 

with

getClass().getClassLoader().getResource("parser.dat")
share|improve this answer
OK, I'll try doing that. – Dude Dawg Aug 14 '11 at 21:32
Thanks, that was it! This solved the problem. – Dude Dawg Aug 14 '11 at 21:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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