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

I want to run a simple executable jar like this:

java -jar /path/to/my/jar/myjar.jar

However, i have to put that absolute path everytime I want to run it. Is there a way to tell the OS to look for the jar in $PATH environment variable?

Thanks,

share|improve this question

4 Answers

I think you'd use the classpath; append your directory to it and java -jar myjar.jar should work.

share|improve this answer

You could use CLASSPATH environment variable instead

share|improve this answer
can you show an example? i tried to put the path in CLASSPATH, i got this error: Unable to access jarfile myjar.jar – Sean Nguyen Dec 20 '10 at 23:27
try: java your.Class where is the one that has the main method in that class. Since your .jar is already in the CLASSPATH, everything should run. On the other hand, quite frankly, what I do is to create .sh file in my $HOME/bin with the content : java -jar /full/path/to/my/File.jar but I'm not sure if that's what you need. – OscarRyz Dec 20 '10 at 23:40

You can also copy your jar file to /usr/bin folder, then it will work with just $ myjar.jar

Make sure your jar file has the executable bit (chmod +x myjar.jar) and copy it to /usr/bin (sudo cp myjar.jar /usr/bin/myjar.jar)

share|improve this answer
it doesn't work. When i tried it, it shows an error: invalid file (bad magic number): Exec format error – Sean Nguyen Dec 20 '10 at 23:14
What Linux distro are you using? If it's Ubuntu, before you copy it to /usr/bin, try right-clicking on your jar file and open the Properties dialog. Click on the Open With tab and select something in the lines of Sun Java Runtime. Then try to run the jar by double-clicking on it in Nautilus. If that works, it will work from command line as well when you copy it again. – Nejc Saje Dec 20 '10 at 23:24
i am using fedora, but i tried to do the same, it doesn't work. – Sean Nguyen Dec 20 '10 at 23:30

The -jar directive overrides the classpath, using whatever is defined in the jar file itself. The best way to do what you need is to use a tool such as ant, a script, or copy it to somewhere where the OS can find it (as Nejc Saje suggested).

share|improve this answer

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.