Java

TwitterFacebook
Get flash to fully experience Pearltrees

Compiling Java applications to native Windows executables

Being a Java developer really sucks when it comes to making end-user desktop applications. You want these applications to be light, fast and easily redistributable. Packaging a bunch of jars along with startup script is the worst thing you can do. http://paranoid-engineering.blogspot.com/2010/03/compiling-java-applications-to-native.html
http://gcc.gnu.org/java/

GCJ: The GNU Compiler for Java

GCJ is a portable, optimizing, ahead-of-time compiler for the Java Programming Language. It can compile Java source code to Java bytecode (class files) or directly to native machine code, and Java bytecode to native machine code. Compiled applications are linked with the GCJ runtime, libgcj , which provides the core class libraries, a garbage collector, and a bytecode interpreter. libgcj can dynamically load and interpret class files, resulting in mixed compiled/interpreted applications.
Java

Subject : Re: Using the Apple Command Key in Java Apps? From: Doug Zwick < email@hidden > Date: Thu, 24 May 2007 11:04:20 -0600 Delivered-to: email@hidden Delivered-to: email@hidden Steve White wrote: "Shortcut" or "Accelerator" keys are easily handled in a cross- platform way in Swing. The Toolkit gives the key ID for the native OS shortcut key: int shortcut = Toolkit.getDefaultToolkit ().getMenuShortcutKeyMask(); With this you can make a KeyStroke int key = KeyEvent.VK_Q; // or whatever KeyStroke ks = KeyStroke.getKeyStroke( key, shortcut );

Using the Apple Command Key in Java Apps?

http://lists.apple.com/archives/java-dev/2007/May/msg00243.html

gdata-java-client - Project Hosting on Google Code

Questions or Comments? Report a problem? Request a feature? http://code.google.com/p/gdata-java-client/