5

我意识到有一百万个这样的帖子,但没有一个对我有帮助,所以这里是:我正在尝试部署一个无法正确加载的非常非常简单的小程序。我的 HTML:

<html>
<head>
    <meta http-equiv="Content-Type" content"text/html; charset=utf-8">
</head>
<body>
   <applet code = "SimpleApplet.class"
   width = "320" height = "100"></applet>
</body>
</html>

我的爪哇:

package test;

import javax.swing.*;   

public class SimpleApplet extends JApplet{
   public void init(){
      try{
        SwingUtilities.invokeAndWait(new Runnable(){
          public void run(){
            JLabel lbl = new JLabel("Hello World");
            add(lbl);
          }
        });             
      }
      catch(Exception e){
        System.out.println(e);
      }
   }
}

两个文件位于同一目录中

/home/me/workspace/myProject/bin/test

如果我通过 Eclipse 自己运行小程序,它可以正常工作。当我打开页面时出现错误

java.lang.NoClassDefFoundError: SimpleApplet (wrong name: test/SimpleApplet)

该错误表明我错误地放置或命名了某些东西。然而,尝试后

<applet code = "test/SimpleApplet.class"
width = "320" height = "100"></applet>

<applet code = "SimpleApplet.class"
codebase = "/test"
width = "320" height = "100"></applet>

连同其他尝试,包括删除“,尝试绝对路径名和所有部分路径名,以及使用.java,它仍然不起作用,我最终得到一个 ClassNotFoundException。其他 答案指出类路径和代码库(通常与存档有关)问题是发生这种情况的主要原因。但是,我没有使用 jar 文件,并且两个文件都在同一个目录中。有人知道为什么会这样吗?

4

3 回答 3

7
  • /home/me/workspace/myProject/bin
    • 小程序.html
    • /home/me/workspace/myProject/bin/test
      1. 简单小程序类

如果类SimpleApplet在包test中,则将 HTML 放在父目录中(如上所述),并使用此 HTML。

<html>
<head>
    <meta http-equiv="Content-Type" content"text/html; charset=utf-8">
</head>
<body>
   <applet code = "test.SimpleApplet"
   width = "320" height = "100"></applet>
</body>
</html>

侧面提示:

  • 发布代码时,也要发布 import 和 package 声明,或者换句话说,全部发布。事实上,我们需要对事物进行猜测;但是有了完整的代码,我们就不必这样做了。
  • 在这个阶段不要尝试小程序。您应该理清在命令行上使用包的工作,小程序比使用 GUI 的应用程序更难。
于 2012-07-29T00:30:11.173 回答
0

判断从

以及其他尝试,包括删除 "、尝试绝对路径名和所有部分路径名,以及使用 .java

您正在尝试获取 test/SimpleApplet.java 而不是 test/SimpleApplet.class。您需要将 SimpleApplet.java 文件编译成 SimpleApplet.class 文件

确保当你这样做时,你使用

<applet code = "SimpleApplet.class"
codebase = "/test"
width = "320" height = "100"></applet>

因为 /test 是代码库,而不是包名。

于 2012-07-27T17:48:35.437 回答
0

NoClassDefFoundError: Ahmed (wrong name: intoapplet/Ahmed )

我一直在寻找解决方案 3 天。

你的建议:

如果您将类命名为“测试”,编码约定建议它应该是“测试”。

这有助于我在我的 Java 类中不包括包声明。通过将项目名称的第一个字母作为大写字母保存。(使用eclipse)。

----------------------------------Java 代码:------------- ------------------

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

    public  class  Ahmed extends JApplet {

    private static final long serialVersionUID = 1L;

    public void paint(Graphics g){
    super.paint(g);
    g.drawString("my name is Ahmed Zaki wow this actually
    works",300,300);                     
    }
    }

----------------------------------HTML代码-------------- --------------------

    <html>
    <head>
    <title>Tutorial applet</title>
    </head>
    <body>

    <Applet code="Ahmed.class"   width="400"; height="300";> 

    </Applet>
    </body>
    </html>

-------开源SFTP、FTP、WebDAV和SCP客户端目录-------

使用“WinSCP”在 /public_html/ 文件夹中的 class 和 html 文件,WinSCP 是适用于 Microsoft Windows 的免费和开源 SFTP、FTP、WebDAV 和 SCP 客户端。它的主要功能是本地和远程计算机之间的安全文件传输。

    example:

    directory for html file = /public_html/index.html
    directory for class file = /public_html/Ahmed.class

    example no2:

    +-- public_html
    |   +-- index.html
    |   +-- Ahmed.class
于 2015-07-03T21:26:12.707 回答