0
我已經在Eclipse中的結構如下:Java小程序沒有啓動
foo.bar.app如包,其中包含Main.java和Applet.java(不知道是否需要thie ifnormation ...)
我可以在eclipse中以Java(swing)應用程序或applet的方式運行appliacation。現在我試圖運行它成brwoser(只能在FireFox中工作...)
所以我做了一個右鍵點擊項目 - >導出 - > jar(不是可運行jar!),並將其移動進入文件夾/ home /用戶/桌面/測試
文件夾測試包含以下的index.html:
<html>
<head>
</head>
<body>
<p>
<embed id = "test"
type="application/x-java-applet;version=1.6"
width="256" height="256"
archive="test.jar"
code="foo.bar.app.Applet.class"
/>
</p>
</body>
但我的一切是一個灰色箱子......在底部FireFox說Start:applet沒有啓動。
這裏是一個片段
public class Applet extends JApplet {
@Override
public void init() {
super.init();
// simulate properties file, empty properties should have no influence
Properties p = new Properties();
this.setLayout(new BorderLayout());
this.setSize(1000, 600);