|
|
2008-11-17
, 19:35
|
|
|
Posts: 357 |
Thanked: 115 times |
Joined on Sep 2007
@ Sunny England :)
|
#2
|
|
|
2008-11-17
, 19:45
|
|
Posts: 41 |
Thanked: 13 times |
Joined on Oct 2008
|
#3
|
|
|
2008-11-18
, 11:39
|
|
Posts: 15 |
Thanked: 0 times |
Joined on Nov 2008
|
#4
|
/home/user/MyDocs/.documents # export CLASSPATH=/home/user/MyDocs/.documents/Main.class:. /home/user/MyDocs/.documents # cacao -cp /home/user/MyDocs/.documents/Main.class:. Main
|
|
2008-11-18
, 12:51
|
|
Posts: 1 |
Thanked: 0 times |
Joined on Nov 2008
|
#5
|
package test810;
cacao test810.Main
|
|
2008-11-18
, 13:48
|
|
Posts: 15 |
Thanked: 0 times |
Joined on Nov 2008
|
#6
|
java Main
export CLASSPATH=/usr/share/classpath/glibj.zip:. cacao -cp /usr/share/classpath/glibj.zip:. Main
|
|
2008-11-18
, 16:30
|
|
Posts: 41 |
Thanked: 13 times |
Joined on Oct 2008
|
#7
|
What is glibj.zip? What does the classpath point to? and what directory should I be in to execute the cacao command.
|
|
2008-11-18
, 17:08
|
|
Posts: 15 |
Thanked: 0 times |
Joined on Nov 2008
|
#8
|
cacao -cp /usr/share/java/swt-gtk.jar SimpleSwtSample
SimpleSwtSample not found in java.lang.classloader$1{urls=[file:/usr/share/java/swt-gtk.jar], parent = null}
|
|
2008-11-18
, 19:57
|
|
Posts: 41 |
Thanked: 13 times |
Joined on Oct 2008
|
#9
|
|
|
2008-11-18
, 21:44
|
|
Posts: 15 |
Thanked: 0 times |
Joined on Nov 2008
|
#10
|
dumping the current stack trace. We received a SIGSEGV and tried to handle it but we were unable to find java method at PC=0x401020c8
segmentation fault
I'm having a problem executing a java program on the tablet. I've following the guide on the maemo site, so installed cacao and the gnu classpath.
I have the following simple code
public class Main { public static void main(String[] args) { System.out.println("Hello Jalimo"); } }