By benji | August 23, 2010
I meant to post some time ago about how great the n900 is for java development. Not only can one install OpenJDK, but Netbeans is even usable. It’s pretty easy to get running. Just install openjdk6 in the application manager. Then download and run the netbeans installer.
It even runs at quite a reasonable speed if [...]
By benji | August 23, 2010
Normally a command-line Java application will have an entry method that looks something like:
public static void main(String… args) {
/* Code that launches the application/deals with command line params here */
}
This is far too easy, there must be a way to NIH it ¬_¬. There are a few annoyances with the public [...]