Java AWT Native Interface is an interface for the Java programming language that enables renderinglibraries compiled to native code to draw directly to a JavaAbstract Window Toolkitobject drawing surface. The Java Native Interface enabled developers to add platform-dependent functionality to Java applications. The JNI enables developers to add time-critical operations like mathematical calculations and 3D rendering. Previously, native 3D rendering was a problem because the native code didn't have access to the graphic context. The AWT Native Interface is designed to give developers access to an AWT Canvas for direct drawing by native code. In fact, the Java 3DAPI extension to the standard Java SEJDK relies heavily on the AWT Native Interface to render 3D objects in Java. The AWT Native Interface is very similar to the JNI, and, the steps are, in fact, the same as those of the JNI. See the Java Native Interface article for an explanation of the JNI techniques employed by the AWT Native Interface. The AWT Native Interface was added to the Java platform with the J2SE 1.3 version.
AWT Native Interface steps
A complete walkthrough example of this technology is available on Wikibooks.
See the Java Native Interface article for an explanation of the nativekeyword and the loadLibrary method. A paint method will be simply invoked when the AWT event dispatching thread "repaints" the screen.
One should run the file as usual. One should then see a window with, for example, a rectangle drawn in it. Note: One can notice that the AWT Native Interface requires the "jawt.dll" to run with the application, so the easiest way to do that is copying the "jawt.dll"
Native painting
One can paint as if it is a native application. In Windows, the JVM will pass a HWND and other window information to the native application so that the application will "know" where to draw. It could use GDI to draw a Rectangle. The window information the native side needs will be in a JAWT_Win32DrawingSurfaceInfostructure which can be retrieved with this line: