Java: Difference between revisions

From 太極
Jump to navigation Jump to search
No edit summary
No edit summary
Line 13: Line 13:
java Example  # run bytecode in Java Virtual Machine
java Example  # run bytecode in Java Virtual Machine
</pre>
</pre>
= Swing =
* http://zetcode.com/tutorials/javaswingtutorial/

Revision as of 11:16, 3 March 2014

Some projects written in Java

  • FastQC The code uses Java 2D graphics APIs in awt like BasicStroke, Color, Dimension, Graphics, Graphics2D, RenderingHints and javax.swing.JPanel. It also uses java.util.Vector.

Tutorial

Compile a simple Java program

javac Example.java # generate Example.class; bytecode version of the program
java Example   # run bytecode in Java Virtual Machine

Swing