由于它显然是一个桌面应用程序。一种策略是使用Java Web Start启动它。如果使用 web start 启动,则将按正常加载方式加载本机。
这是用于加载小程序演示的 JNLP。
<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="1.0+" codebase="" href="">
<information>
<title>helloapplet</title>
<vendor>stevpan</vendor>
</information>
<resources os="Windows" arch="x86">
<nativelib href="win_x86_dll.jar" />
</resources>
<resources os="Windows" arch="amd64">
<nativelib href="win_x64_dll.jar" />
</resources>
<resources>
<!-- Application Resources -->
<j2se version="1.6+"
href="http://java.sun.com/products/autodl/j2se" />
<jar href="hello.jar" main="true" />
</resources>
<applet-desc
name="helloapplet"
main-class="helloapplet"
width="640"
height="480">
</applet-desc>
<update check="background"/>
</jnlp>