I have BOTH the JRE and JDK 1.3.1_01 installed.
I tried running it by:
java -cp /usr/java/jdk1.3.1_01:/usr/local/LimeWire RunLime
which gives me:
java.lang.ClassNotFoundException: /usr/java/jdk1/3/1_01:/usr/local/LimeWire
at java.lang.Class.forName(Class.java:native)
at java.lang.Class.forName(Class.java:52)
I then tried:
CLASSPATH=/usr/java/jdk1.3.1_01:/usr/local/LimeWire; export CLASSPATH
java RunLime
which gives me:
java.lang.NoClassDefFoundError: javax/swing/JOptionPane
at RunLime.main(RunLime.java:76)
I then tried the whole set again pointing to:
/usr/java/jre1.3.1_01:usr/local/LimeWire
and got the same results.
I then tried pointing to:
/usr/java/jre1.3.1:usr/local/LimeWire;
and got the same results again.
I then tried:
find / -name *JOptionPane*
which came up with nothing
I then tried:
find / -name *swing*
which only shows:
/usr/java/jdk1.3.1_01/demo/jfc/Metalworks/HelpFiles/swing.html
Is swing something that I have to download seperately and if so, where do I get it?
Thanks for all of your help. |