Difference between revisions of "Using the Java Virtual Machine"

From wiki.emacinc.com
Jump to: navigation, search
Line 1: Line 1:
{{todo|SEOKWTODO; Finish Writing; (05.06.14-17:30->KY+)|Klint Youngmeyer|project=oe 4, oe 5,md,ky,SEOKWTODO,bs}}
+
{{todo|SEOKWREV; Finish Writing; (05.06.14-17:30->KY+)|Klint Youngmeyer|project=oe 4, oe 5,md,ky,SEOKWREV,bs}}
  
 +
{{#seo:
 +
|title=Using the Java Virtual Machine
 +
|titlemode=append
 +
|keywords=Java,JamVM,JVM
 +
|description=A short tutorial for using the JamVM Java Virtual Machine.
 +
}}
 
The Java Virtual Machine is an optional package and is not included by default in EMAC Linux builds. If you would like to include this package with your build, the custom package number is SL040-NPN-00140. To inquire about purchasing this package, please contact EMAC at [http://info@emacinc.com info@emacinc.com].
 
The Java Virtual Machine is an optional package and is not included by default in EMAC Linux builds. If you would like to include this package with your build, the custom package number is SL040-NPN-00140. To inquire about purchasing this package, please contact EMAC at [http://info@emacinc.com info@emacinc.com].
  
Line 16: Line 22:
 
{{mbox  | type=notice | text='''NOTE''': The name of the class in the Java source file must match the name of the file without the <code>.java</code> extension.}}
 
{{mbox  | type=notice | text='''NOTE''': The name of the class in the Java source file must match the name of the file without the <code>.java</code> extension.}}
 
<br />
 
<br />
The resultant class file will need to be sent to the target board to be run. The easiest way to accomplish this is through <code>scp</code>:
+
The resulting class file will need to be sent to the target board to be run. The easiest way to accomplish this is through <code>scp</code>, assuming the IP address <code>10.0.2.40</code>, the command is:
 
<syntaxhighlight lang="bash">
 
<syntaxhighlight lang="bash">
developer@ldc:~$ scp HelloWorld.class  
+
developer@ldc:~$ scp HelloWorld.class root@10.0.2.40:/root
 
</syntaxhighlight>
 
</syntaxhighlight>
  
Line 33: Line 39:
  
 
EMAC includes a few sample Java programs on the builds that include the JamVM package. The examples are located in the <code>/home/user/Java-Examples</code>. Both the source files and class files are included on the board. If changes need to be made to a source file, the class file will need to be recompiled on a development computer and sent back to the target board.
 
EMAC includes a few sample Java programs on the builds that include the JamVM package. The examples are located in the <code>/home/user/Java-Examples</code>. Both the source files and class files are included on the board. If changes need to be made to a source file, the class file will need to be recompiled on a development computer and sent back to the target board.
 +
 +
The included examples are:
 +
* BinaryConverter
 +
* GameOfLife
 +
* HelloWorld
 +
* KeyboardReader
 +
* PrimeNumbers

Revision as of 14:11, 7 May 2014

TODO: {{#todo:SEOKWREV; Finish Writing; (05.06.14-17:30->KY+)|Klint Youngmeyer|oe 4, oe 5,md,ky,SEOKWREV,bs}}

The Java Virtual Machine is an optional package and is not included by default in EMAC Linux builds. If you would like to include this package with your build, the custom package number is SL040-NPN-00140. To inquire about purchasing this package, please contact EMAC at info@emacinc.com.

JamVM

A Java virtual machine (JVM) is the software that converts Java bytecode into a program that can run in the target system. Java mostly uses the just in time (JIT) compilation method which partially compiles the code so that the JVM on any target can complete compiling the code for the target's specific instruction set. The JIT method saves time by only needing to be compiled once then using the same bytecode on multiple separate platforms. The Java Virtual Machine that is included in the EMAC package is JamVM. JamVM is a small, open source virtual machine that conforms to the Java virtual machine specification version 2.

Compiling Programs

It is not currently possible to compile a Java program directly on an EMAC board. A development computer is needed to compile the program and send the bytecode to the board. The process of compiling a basic Java program is fairly simple, the command for compiling the file HelloWorld.java is:

developer@ldc:~$ javac HelloWorld.java

The javac command calls the Java compiler on the HelloWorld.java source file and produces a file called HelloWorld.class. The HelloWorld.class file will be used to run the program.


The resulting class file will need to be sent to the target board to be run. The easiest way to accomplish this is through scp, assuming the IP address 10.0.2.40, the command is:

developer@ldc:~$ scp HelloWorld.class root@10.0.2.40:/root

Running Programs

Running a compiled Java program is accomplished by passing the class name to java. To run the HelloWorld program, use the following command with the HelloWorld.class file in the current directory.

developer@ldc:~$ java HelloWorld


Included Examples

EMAC includes a few sample Java programs on the builds that include the JamVM package. The examples are located in the /home/user/Java-Examples. Both the source files and class files are included on the board. If changes need to be made to a source file, the class file will need to be recompiled on a development computer and sent back to the target board.

The included examples are:

  • BinaryConverter
  • GameOfLife
  • HelloWorld
  • KeyboardReader
  • PrimeNumbers