This article is the use of Borland's non-disclosed use, which can make an EXE file to start the Java file through JBuilder. JBUILDER does not support local compilation mechanisms. But there is a hidden tip that allows you to start Java programs from an executable file, you can appear or do not appear in the Console window. These files that need jbuilder's bin directory: jbuilder.exe jbuilderw.exe (optional) jbuilder.config jdk.config javalauncher.dll "jbuilder.exe" is a universal executable shell file for launching Java programs, " JBuilderw.exe "seems to be Javaw.exe, it does not display the Window of the conso le in" jbuilder.exe "packages. The key to using these files is the file name. "Jbuilder.exe" finds a configuration file called "jbuilder.config", which contains information that runs the Java program. The same "jbuilderw.exe" finds "jbuilder.exe" to start Java programs that do not have a console window. If "jbuilder.exe" is renamed "foo.exe", "foo.exe" will look for "foo.config" profile, the same "jbuilderw.exe" is renamed "foow.exe", it Will find the "foo.exe" file. How do I use jbuilder.exe to launch an application? Just rename the JBuilder.exe, JBuilerw.exe, jBuilder.config, specify the primary class and class path in jbuilder.config, and can be started by executing jbuilder.exe (or renamed EXE file) Java app is. Here is an example: Borland JBuilder 8 is installed in the E: / jBuilder8 / directory, build a TEMP directory in E: / jBuilder8 / bin /, then put jbuilder.exe, jbuilder.config, javalauncher.dll, jdk. Config four files to the E: / jbuilder8 / bin / temp / directory, then build a Hello directory in this directory, generate a hello.java file in this directory, ie E: / jbuilder8 / bin / temp / hello ///HELLO.JAVA Package Hello; Public Class Hello {Public Static Void Main (String S []) {system.out.println ("Hello, Exe File!";}} Compiling Java files then open Jbuilder.config file, be amended accordingly: JBuilder.config found inside the following two lines # Start JBuilder using the its main class mainclass com.borland.jbuilder.JBuilder amended as # Start JBuilder using the its main class mainclass hello.hello The AddPath E: / jbuilder5 / bin / temp / addpath command is to add a directory to the class path, this command and other config commands that can be identified can be identified in config_readme.txt in the jbuilder / bin directory.