Localhost Java Applet不断崩溃

时间:2013-07-03 21:36:26

标签: java crash applet localhost

我在localhost服务器上运行java applet时遇到问题。我正在观看针对java的Bucky(thenewboston)视频教程,似乎无法在我的localhost网站上运行我的第一个Java applet。在eclipse中测试时,Java applet非常有用。我不断得到一个“Java(TM)平台SE 7 U25已经崩溃了”。我知道我的java代码很好(因为它在eclipse中工作),我完全按照他的教程如何将它放在网页上。

我的HTML文件:

<!DOCTYPE html>
  <head>
    <meta charset = "UTF-8"/>
    <title>My First Applet</title>
  </head>

  <body>
    <applet code = "index.class" width = "400" height = "100"></applet>
  </body>
</html>

我的java文件:

import java.awt.*;
import javax.swing.*;

public class index extends JApplet{

  public void paint(Graphics g){

    super.paint(g);

    g.drawString("Wow this actually worked!", 25, 25);
  }
}

我编译了java文件以获取index.class并将它们放在我的localhost目录中。难道我做错了什么? :(

编辑:我通过同一网络上的笔记本电脑访问它,它运行正常。它只是不能在我的桌面上工作。我的桌面操作系统是Windows 7.这会对它产生什么影响吗?我还检查了其他运行java的站点,但它们都不能在我的台式机上运行。

1 个答案:

答案 0 :(得分:0)

您使用的是Google Chrome吗?因为使用chrome安装多个Java版本时有时会出错。请参阅:http://answer.techbuddiesonline.com/thread.php?elem_id=688