gpt4 book ai didi

Java找不到主类

转载 作者:IT老高 更新时间:2023-10-28 20:55:49 31 4
gpt4 key购买 nike

我编写了以下Java源文件(Hello.java):

package com;

public class Hello {
public static void main(String[] args) {
System.out.println("Hello!");
}
}

我把它保存到 C:/tmpjava/Hello.java.

从命令行,我导航到该目录并运行 javac Hello.java。然后我运行 dir:

  • Hello.class
  • Hello.java

然后,从我刚刚运行 javac 的同一目录中,我运行 java Hello.class 并得到:

Exception in thread "main" java.lang.NoClassDefFoundError: Hello/class
Caused by: java.lang.ClassNotFoundException: Hello.class
at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
Could not find the main class: Hello.class. Program will exit.

这是怎么回事?!? javac 怎么能正常运行,而java 不行?

最佳答案

你的类 Hello 属于包 com。所以你的类的完全限定名称是com.Hello。当您在命令行上使用 java 调用程序时,您应该提供包含您的 main 方法的类的完全限定类名并省略 .class,像这样:

java com.Hello

java 程序需要这个完全限定的类名来理解你指的是哪个类。

但是你还有另一个问题。 java 程序使用文件系统定位包、子包和属于它们的类。因此,如果你有一个像 com.Hello 这样的包结构,java 程序期望在名为 comHello.class 的类文件>,像这样:com/Hello.class。事实上,您可以在您看到的 Exception 中观察到这种行为;您错误地使用了 Hello.class,java 将其解释为一个名为 Hello 和一个 class命名为class,正在寻找目录结构Hello/class:

java.lang.NoClassDefFoundError: Hello/class

但是编译器javac 没有默认设置这个目录结构。见 documentation for javac ,但重要的是:当您进行编译时,您可以使用 -d 标志指定目标目录:

-d directory

Set the destination directory for class files. The destination directory must already exist; javac will not create the destination directory. If a class is part of a package, javac puts the class file in a subdirectory reflecting the package name, creating directories as needed. For example, if you specify -d c:\myclasses and the class is called com.mypackage.MyClass, then the class file is called c:\myclasses\com\mypackage\MyClass.class.

If -d is not specified, javac puts the class file in the same directory as the source file.

最后一点粗体字是初学者困惑的根源,是你自己问题的一部分。

所以你有两种选择:

  1. 在您的情况下,如果您提供当前目录作为目标目录就可以了,就像这样(句点 . 表示 当前目录):

    javac -d . Hello.java

    如果你像这样调用编译器,它会为你创建 com 目录,并将你编译的类文件放入其中,这是 java 程序期望找到它的方式。然后当你像上面那样运行java时,从c:\tmpJava,你的程序应该会执行。

  2. 您可以使用反射(reflect)您的包结构的目录结构来设置您的源代码:将您的源文件 Hello.java 放在一个名为 com 的目录中,在您的情况下:c:\tmpJava\com\Hello.java。现在,从 c:\tmpJava 你可以像这样运行你的 javac 编译:

    javac com\Hello.java

    您没有提供 -d 标志,但这很好,因为您自己创建了目录结构,并再次引用上面的文档:

    If -d is not specified, javac puts the class file in the same directory as the source file.

    同样,当你像上面那样运行 java 时,你的程序应该会执行。

    请注意,第二种选择是 java 程序员常用的一种选择:源代码文件组织在一个目录结构中,该目录结构反射(reflect)了包结构。

在这个解释中,我们忽略了类路径的概念。您还需要了解编写 java 程序,但是在您只是在当前目录中编译程序的情况下 - 如果您在编译类时遵循上述两种选择之一 - 您可以在不设置类路径的情况下逃脱,因为,默认情况下,java 程序将当前目录作为类路径。另一个引用,这个来自 documentation for java :

-cp classpath

Specify a list of directories, JAR archives, and ZIP archives to search for class files. Class path entries are separated by semicolons (;). Specifying -classpath or -cp overrides any setting of the CLASSPATH environment variable.

If -classpath and -cp are not used and CLASSPATH is not set, the user class path consists of the current directory (.).

请注意,当您使用 Eclipse 之类的 IDE 来运行您的 java 代码时,这主要是为您处理的,但您仍然会遇到类路径问题。

关于Java找不到主类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12096016/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com