RSS Feed for This PostCurrent Article

Java Native Compiler, Java Executable Wrapper

JavaNativeCompiler (JNC)

jnc1.png

JNC is a Java to native compiler. It allows AOT (ahead of time) compilation of your Java applications. With JNC, you can create real standalone native binaries (.exe on Windows) which will no longer depend on a JRE.

Java Launcher
jl2.gif

Quoted from the website,

  1. Run java applications and applets by double-clicking class files in explorer as if they are normal windows executable files. At same time, the software can check class errors (such as package error) and monitor streams for java exceptions
  2. Display java source code in text format and class hierarchy in graphic format by right-clicking class files in explorerclass files are not restricted to application and applet classes, they can be any.
  3. Examine contents of jar and zip files in details without extracting them by just one right-clicking in explorer source code of class files, java, html, xml and all text formatted files inside those compressed files are displayed by interfaces of the feature.
  4. Compile thousands of java files by just one right-clicking in explorer. A perfect option allows java files to be compiled as a whole, directory by directory and file by file.
  5. Execute thousands of applications and applets by just one right-clicking in explorer. It detects applications and applets from class files automatically and provides all options required.
  6. Debug thousands of applications and applets by just one right-clicking in explorer. It automatically provides signatures of fields, methods, classes and more for stop-in, watching and tracking with debugging process.
  7. Create windows exe files. The software compresses all class and other files (such as image files) into a single exe file. The exe file can be launched by double-click in windows explorer as if it is a normal windows executable file. User icon, arguments of java method main(), system and user classpaths can be added to the exe file. You can distribute the single exe file to your customers without other files.
  8. Create executable jar files. The jar files are compressed from all class and related files and compatible with multiple platforms. You can launch java application by double-click the jar files if using windows.

    Some more tools listed at http://www.programmersheaven.com/2/Convert-Java-to-EXE


Trackback URL


Sorry, comments for this entry are closed at this time.