Using JAWT implements Web3D
JAWT ( Java Abstract Window Toolkit ) Java use it to define the different OS's create window layer, we get this window's handle by JAWT. In this approach we can draw 3D objects presented on the window's handle, which is by GPU acceleration. JNI ( Java Native Interface ) Java can upload native program's library ( etc: *.dll ). Call the native function defined in this linked library. STEPS: Design your java code to be Applet style, You can adopt eclipse SWT(standard widget toolkit) to support JAWT canvas easier. Define the native interface in your *.java file. Like this: // native entry point for Painting public native void paintOpenGL(); // native entry point for enabling OpenGL calls. public native void initializeOpenGL(); // native entry point for disabling OpenGL calls. public native void cleanupOpenGL(); Load library in the java: System.loadLibrary("openglAWT"); Compare your java code javac to gener