正如我们在上一个问题中讨论的那样,您的代码似乎确实有。main(String[] args)
因此,它可能就像更改一样简单:
<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="1.0+" codebase="http://fogest.com/java_example" href="">
<information>
<title>Launch applet with Web Start</title>
<vendor>Foo Bar Inc.</vendor>
<offline-allowed/>
</information>
<resources>
<j2se version="1.5+" href="http://java.sun.com/products/autodl/j2se"/>
<jar href="physics.jar" main="true" />
</resources>
<applet-desc
name="Physics" main-class="main.MainGame"
width="300" height="200">
</applet-desc>
<update check="background"/>
</jnlp>
类似于:
<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="1.0+" codebase="http://fogest.com/java_example" href="">
<information>
<title>Launch applet with Web Start</title>
<vendor>Foo Bar Inc.</vendor>
<offline-allowed/>
</information>
<resources>
<j2se version="1.5+" href="http://java.sun.com/products/autodl/j2se"/>
<jar href="physics.jar" main="true" />
</resources>
<application-desc main-class="main.MainGame">
</application-desc>
<update check="background"/>
</jnlp>
笔记
- 我没有验证任何一个 JNLP,但你应该。我写JaNeLA 就是为了做到这一点。
- Swing GUI 应该在 EDT 上创建和更新。有关更多详细信息,请参阅Swing 中的并发(尤其是关于“初始线程”的部分)。
- 这是一个基于框架的SSCCE。
import java.awt.*;
import javax.swing.*;
public class MainGame {
public static final String NAME = "Physics - Projectile Motion Example";
public static final int HEIGHT = 160;
public static final int WIDTH = HEIGHT * 16 / 9;
public static final int SCALE = 4;
public MainGame() {
run();
}
public void run() {
JFrame frame = new JFrame(MainGame.NAME);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLayout(new BorderLayout());
JPanel options = new JPanel();
options.add(new JLabel("Options"));
JPanel game = new JPanel();
game.add(new JLabel("Game"));
frame.setSize(new Dimension ( WIDTH * SCALE, HEIGHT * SCALE ));
frame.add(game, BorderLayout.CENTER);
frame.add(options, BorderLayout.SOUTH);
frame.setLocationRelativeTo(null);
frame.setResizable(false);
frame.setVisible(true);
}
public static void main(String[] args) {
new MainGame();
}
}