JVM Languages
j2mees.txt
Associated article: J2ME & Embedded Systems
Tags: JVM Languages
Published source code accompanying the article by William Wright in which he shows how the Java 2 Micro Edition is a development tool for environments where resources don't support the full Java 2 Standard Edition. William uses it with aJile Systems's aJ-100 processor to build a network security device. Also see J2MEES.ZIP.
J2ME & Embedded Systems
by William Wright
Example 1:
public class Hello {
public Hello() {
System.out.println("Hello, World!");
}
public static void main(String [] argv) {
new Hello();
}
}
Example 2:
StreamConnectionNotifier ss = (StreamConnectionNotifier)
Connector.open("serversocket://:80", Connector.READ_...


