Skip to content

9cat/winrun4j

 
 

Repository files navigation

WinRun4J

Configurable Java Launcher for Windows

About

WinRun4j is a java launcher for windows. It is an alternative to javaw.exe and provides the following benefits:

  • Uses an INI file for specifying classpath, main class, vm args, program args.
  • Custom executable name that appears in task manager.
  • Additional JVM args for more flexible memory use.
  • Built-in icon replacer for custom icon.
  • Pre-JVM splash screen with auto-hide.
  • DDE implementation for file assocations.
  • Windows Service wrapper.
  • Access Windows API without JNI, compatible with PINVOKE.NET. See native binding examples for more information. This is currently BETA quality.
  • Console version
  • Support for 64-bit JVM.
  • Supports embedding (inside the executable) the INI file. See Embedded Resources section below.
  • Supports embedding a splash image.
  • Supports embedding JAR files. These will be included in the classpath (without extraction). This is currently BETA quality.
  • Eclipse Plugin for integrated launching, debugging and exporting as an executable bundle.

WinRun4J is licensed under the Common Public License (CPL).

Download

The latest download is available from the Project Page.

Usage

The launcher is designed to be used as follows:

  1. Copy WinRun4J.exe to [YourApp].exe
  2. Create [YourApp].ini (in the same directory)
  3. Customize [YourApp].ini (see the table below for information)
  4. Create [YourApp].ico (in the same directory)
  5. Run RCEDIT.exe /I [YourApp].exe [YourApp].ico (this will inject your icon into the executable).
  6. Launch [YourApp].exe

A very basic INI file would look like:

main.class=org.something.MyMainClass
classpath.1=*.jar

The INI file accepts the following settings:

<tr><th>Key</th><th>Description</th></tr>
<tr>
	<td>working.directory</td>
	<td>This will be the current directory for the app. It can be relative to your executable.</td>
</tr>
<tr>
	<td>classpath.1, classpath.2, ..., classpath.n</td>
	<td>Classpath entries. These will be relative to the working directory above. They can be wildcards (eg. *.jar)</td>
</tr>
<tr>
	<td>main.class</td>
	<td>This is the java class that will be run</td>
</tr>
<tr>
	<td>vmarg.1, vmarg.2, ..., vmarg.n</td>
	<td>Java VM args. These will be passed on to the VM.</td>
</tr>
<tr>
	<td>vm.version.max</td>
	<td>The maximum allowed version (1.0, 1.1, 1.2, 1.3, 1.4, 1.5).</td>
</tr>
<tr>
	<td>vm.version.min</td>
	<td>The minimum allowed version (1.0, 1.1, 1.2, 1.3, 1.4, 1.5).</td>
</tr>
<tr>
	<td>vm.version</td>
	<td>Specify an exact version to use (eg. 1.5.0_07).</td>
</tr>
<tr>
	<td>vm.location</td>
	<td>Specify the location of the JVM dll you want to use. This is useful when you package
	    your own JRE with your app. This may be a search path separated by "|"</td>
</tr>
<tr>
	<td>vm.sysfirst</td>
	<td>Set this to "true" to attempt to use the system registered installations before using vm.location</td>
</tr>
<tr>
	<td>vm.heapsize.max.percent</td>
	<td>Specify

a proportion of the available physical memory to use (ie. relates to -Xmx arg). For example, vm.heapsize.max.percent=75. Note that this will use the maximum memory possible.

vm.heapsize.min.percent Specify a proportion of the available physical memory to use as the minimum starting heap size (ie. relates to -Xms arg).
vm.heapsize.preferred Specify a preferred amount (in MB) for the heap size (ie. relates to -Xmx arg). If this amount is not available it will use the maximum amount possible given the physical memory available.
arg.1, arg.2, ..., arg.n Program arguments. These will be sent before any command line arguments.
java.library.path.1, java.library.path.2, ..., arg.n Numbered entries for the native libary search path
log Standard out and error streams will be redirected to this file (including launcher messages and JNI logging).
log.level Specify the logging level. One of "info", "warning", "error", "none". Default is "info".
log.overwrite Set to "true" to cause the log file to be overwritten each time the application/service is launched.
log.file.and.console Set to "true" to output to the console and the log file (if present). Note: this only applies to WinRun4J log messages and Java logging using the Log class.
log.roll.size A decimal value in megabytes for the max log size before rolling. Old logs are moved to logname-[timestamp].extension.
log.roll.prefix Customizes the rolled log file prefix to [prefix]-[timestamp].extension
log.roll.suffix Customizes the rolled log file suffix to [prefix]-[timestamp][suffix]
log.output.debug.monitor Useful for monitoring services. Set this to "true" to log to the debug monitor. Use DebugView to view. For Vista/Windows 7 see here if you don't see the output.
splash.image The name of the splash image file to display (This can be gif, jpg or bmp). This will auto-hide itself when it detects the first application window.
splash.autohide A flag to disable the splash screen autohide feature ("true").
dde.enabled This flag needs to be set to "true" to enable DDE.
dde.class Optional flag to send execute commands to your class.
dde.server.name, dde.topic, dde.window.class Override the DDE server name, topic and window class.
single.instance This will detect another instance of the application running and will shutdown if one is found.

	It takes the following options:
	<ul>
	<li>"process", this will simply detect if a process for the same executable is present and shutdown.</li>
	<li>"window", this will detect if a process for the same executable is present and if there is a visible window - if this is the case it will set the window to the front and then shutdown.</li>
	<li>"dde", this will simply detect if a process for the same executable and if dde is enabled it will fire a dde activation call (and then shutdown), which can be picked up by the other process. If dde is not enabled it will simply defer to the "window" method.</li>
	</ul>
	</td>
</tr>					
<tr>
	<td>process.priority</td>
	<td>This is can be one of "idle", "below_normal", "normal", "above_normal", "high", "realtime".</td>
</tr>
<tr>
	<td>service.mode</td>
	<td>Set to "false" to run the launcher in main mode (ie. will check for main.class)</td>
</tr>
<tr>
	<td>service.class</td>
	<td>This is the java class that will be run (for a service)</td>
</tr>
<tr>
	<td>service.id</td>
	<td>This is the ID of the service (used for registration)</td>
</tr>
<tr>
	<td>service.name</td>
	<td>The name of the service. This will appear in the service control panel.</td>
</tr>
<tr>
	<td>service.description</td>
	<td>The description on the service. This will appear in the service control panel.</td>
</tr>
<tr>
	<td>service.controls</td>
	<td>The control commands accepted by the service. This can one or multiple of "stop", "shutdown", "pause", "param", "netbind", "hardward", "power", "session". For multiple simply OR together (eg. service.controls=stop|shutdown). The default is "stop|shutdown".</td>
</tr>
<tr>
	<td>service.startup</td>
	<td>Can be one of "auto", "boot", "demand", "disabled", "system". The default is "demand"</td>
</tr>
<tr>
	<td>service.dependency.1, service.dependency.2, ....</td>
	<td>Specifies a set of services that this service depends on.</td>
</tr>
<tr>
	<td>service.loadordergroup</td>
	<td>Specifies the service's load order group.</td>
</tr>
<tr>
	<td>service.user</td>
	<td>Specifies the account to run the service under.</td>
</tr>
<tr>
	<td>service.password</td>
	<td>Specifies the password for the user account.</td>
</tr>
<tr>
	<td>console.title</td>
	<td>Sets the console title (only for console version of launcher).</td>
</tr>
<tr>
	<td>ini.file.location</td>
	<td>The addin will include INI keys from the file location specified (eg <code>ini.file.location=C:\Program Files\MyApp\include.ini</code>)</td>
</tr>
<tr>
	<td>ini.registry.location</td>
	<td>The addin will include INI keys from the registry location specified (eg <code>ini.registry.location=HKEY_CURRENT_USER\Software\MyApp</code>). Currently only string and DWORD values are supported</td>
</tr>
<tr>
	<td>ini.override</td>
	<td>A flag ("true"/"false") to indicate if an external INI file can override values from an embedded one.</td>
</tr>
<tr>
	<td>args.allow.overrides</td>
	<td>Set to "false" to disable the command line argument overrides</td>
</tr>
<tr>
	<td>args.allow.vmargs</td>
	<td>Set to "false" to disable VM arguments override on the command line</td>
</tr>
<tr>
	<td>args.override.prefix</td>
	<td>Changes the default INI key override prefix (-W)</td>
</tr>

Note: INI values can contain environment variables, which will be substituted on startup, eg log.file=%TEMP%/mylog.txt

Command Line Arguments

The launcher supports overriding INI keys and VM args on the command line. The default setup is per the following example:

myapp.exe test -Dprop1=val1 -Xms128M -Wservice.mode=false

The above command line will:

  • set system property prop1 to val1
  • set VM arg -Xms128M
  • set INI key service.mode to false
  • pass the arg 'test' to the main class

The feature and behaviours are configurable via INI keys per above table.

Error Messages

Error messages emitted by the launcher can be customized via the INI file. These can be placed in an "[ErrorMessages]" section:

KeyDescription
show.popup Set this to "false" to disable popups, default is "true".
java.not.found This message will be displayed as a message box popup when the launcher cannot find an appropriate JVM to load.
java.failed This message will be displayed as a message box popup when the JVM fails to startup, for example if invalid VM args are entered in the INI file

An example is as follows:

[ErrorMessages]
java.not.found=A suitable version of Java could not be found on your system. Please contact VendorX.
java.failed=Java failed to startup successfully. Please contact VendorX.

Embedded Resources

The following shows the help information for RCEDIT, the resource editor included in the download:

WinRun4J Resource Editor v1.0 (winrun4j.sf.net)

Edits resources in executables (EXE) and dynamic link-libraries (DLL).

RCEDIT <option> <exe/dll> [resource]

  filename      Specifies the filename of the EXE/DLL.
  resource      Specifies the name of the resource to add to the EXE/DLL.
  /I            Set the icon as the default icon for the executable.
  /A            Adds an icon to the EXE/DLL.
  /N            Sets the INI file.
  /J            Adds a JAR file.
  /E            Extracts a JAR file from the EXE/DLL.
  /S            Sets the splash image.
  /C            Clears all resources from the EXE/DLL.
  /L            Lists the resources in the EXE/DLL.
  /P            Outputs the contents of the INI file in the EXE.

Note:

  • The embedded INI entries are overwridden by an external INI file (if present).
  • Any JARs added to the executable will automatically be added to the classpath (before all classpath entries specified in the INI file and in the order in which they are embedded). They don't need to be specified in the INI file.
  • If an embedded splash image is present it will automatically appear (it doesn't need to be specified in the INI file).

About

WinRun4J Java Application Launcher

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published