- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
我编写了以下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.
最后一点粗体字是初学者困惑的根源,是你自己问题的一部分。
所以你有两种选择:
在您的情况下,如果您提供当前目录作为目标目录就可以了,就像这样(句点 .
表示 当前目录):
javac -d . Hello.java
如果你像这样调用编译器,它会为你创建 com 目录,并将你编译的类文件放入其中,这是 java 程序期望找到它的方式。然后当你像上面那样运行java时,从c:\tmpJava,你的程序应该会执行。
您可以使用反射(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/
例如,我有一个父类Author: class Author { String name static hasMany = [ fiction: Book,
代码如下: dojo.query(subNav.navClass).forEach(function(node, index, arr){ if(dojo.style(node, 'd
我有一个带有 Id 和姓名的学生表和一个带有 Id 和 friend Id 的 Friends 表。我想加入这两个表并找到学生的 friend 。 例如,Ashley 的 friend 是 Saman
我通过互联网浏览,但仍未找到问题的答案。应该很容易: class Parent { String name Child child } 当我有一个 child 对象时,如何获得它的 paren
我正在尝试创建一个以 Firebase 作为我的后端的社交应用。现在我正面临如何(在哪里?)找到 friend 功能的问题。 我有每个用户的邮件地址。 我可以访问用户的电话也预订。 在传统的后端中,我
我主要想澄清以下几点: 1。有人告诉我,在 iOS 5 及以下版本中,如果您使用 Game Center 设置多人游戏,则“查找 Facebook 好友”(如与好友争夺战)的功能不是内置的,因此您需要
关于redis docker镜像ENTRYPOINT脚本 docker-entrypoint.sh : #!/bin/sh set -e # first arg is `-f` or `--some-
我是一名优秀的程序员,十分优秀!