doing a quick google on the error it seems you are trying to run the .java file 
without first compiling it!

you need to compile Test.Java to bytecode using the javac command.

>javac Test.java

this will produce a file Test.class which you can then run using

>java Test

other magic number errors can be caused by compiling with a more recent version 
of javac than the runtime. eg if you compile on your desktop using jdk8 and 
then run using jdk7. you can override the target option (see 
http://docs.oracle.com/javase/7/docs/technotes/tools/windows/javac.html)

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
"BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to