LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   Java issues (https://www.linuxquestions.org/questions/linux-software-2/java-issues-339082/)

mtecknology 07-01-2005 10:42 AM

Java issues
 
I am trying to use configurator to change the settings on my Airport Extreme Base Station, and installed java packages through synaptic.

michael@ubuntu:~$ java /home/michael/Desktop/AirportUtilities/configurator/AConfig.jar
Exception in thread "main" java.lang.NoClassDefFoundError: .home.michael.Desktop.AirportUtilities.configurator.AConfig.jar
at gnu.java.lang.MainThread.run() (/usr/lib/libgcj.so.6.0.0)
Caused by: java.lang.ClassNotFoundException: .home.michael.Desktop.AirportUtilities.configurator.AConfig.jar
at java.lang.Class.forName(java.lang.String, boolean, java.lang.ClassLoader) (/usr/lib/libgcj.so.6.0.0)
at java.lang.Class.forName(java.lang.String) (/usr/lib/libgcj.so.6.0.0)
at gnu.java.lang.MainThread.run() (/usr/lib/libgcj.so.6.0.0)
michael@ubuntu:~$


Any tips to make it open and not confuse me?

Vgui 07-01-2005 11:42 AM

Hi there, first you will need to run it from the directory it is found in, and since it is (likely) an executable jar file, use the command below to start it:

Code:

cd /home/michael/Desktop/AirportUtilities/configurator/
java -jar AConfig.jar

That should get you off and running.

mtecknology 07-01-2005 02:24 PM

thanks
i guess i forgot the obvious


All times are GMT -5. The time now is 08:55 AM.