Skip to content
Advertisement

Cannot find class even when jar file is in working directory

I am struggling to get my Java program to run on AIX. I used Eclipse on Windows to create a runnable Jar file, jRams.jar below. I kept on getting a class not found error, until finally I put all the external libraries in the same directory.

JavaScript

Still, I get the class not found error.

JavaScript

jremote.jar definitely contains JRemoteException. Why isn’t this working?

UPDATE

Thank you for your straight-to-the-point answers. I now understand the nature of a java application and a manifest file far better.

Turns out my ftp client was transferring in ASCII mode and not Binary, so the jar files were corrupt. I have learned a great deal, nonetheless.

Advertisement

Answer

When using the -jar option, you need to specify which jar-files should be on your class path in the manifest file. Just having the required jar files in the same directory won’t do it.

Add a line in your manifest that says:

JavaScript

or skip the -jar option and launch using

JavaScript

and it should work fine.

(Note that on *nix systems, as opposed to Windows machines, the jar files in the class paths should be separated using : instead of ;.)

Further reading:

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement