exception in thread main java.lang.NoClassDefFoundError wrong name解决方法
Posted 席飞剑
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了exception in thread main java.lang.NoClassDefFoundError wrong name解决方法相关的知识,希望对你有一定的参考价值。
初学java时,在执行java文件时,可能会遇到java代码能编译通过,但执行文件时出现:exception in thread main java.lang.NoClassDefFoundError wrong name的错误。
当不含包层次的HelloWorld.java代码(此时程序运行正常)
public class HelloWorld
public static void main(String[] args)
System.out.println("Hello World!");
保存在E:\\java\\src下,使用javac命令编译:
E:\\java\\src>javac HelloWorld.java
运行:
E:\\java\\src>java HelloWorld
屏幕打印出:
Hello World!
以下是初学者常犯的错误,会导致出现exception in thread main java.lang.NoClassDefFoundError wrong name错误:
1. 运行时,带了.class后缀
如果你试图使用如下命令:
E:\\java\\src>java HelloWorld.class
系统会误认为你运行的是HelloWorld包下的名为class的类文件,会到系统的CLASSPATH下(一般都包括当前目录)企图寻找 HelloWorld.class.class这样的类,这样的类当然不存在了;并且也不可能存在,因为class是关键字,不能作为一个类的名字。所以会报如下错误信息:
Exception in thread "main" java.lang.NoClassDefFoundError: HelloWorld/class
2. 文件名大小写错误
对于像Windows这样的系统,编译时可以不关心大小写。比如编译HelloWorld.java时,也可以使用:
E:\\java\\src>javac helloworld.java
也可以编译通过,但产生的类文件仍然是和源文件相符的:HelloWorld.class。
但在运行时一定要注意大小写,比如试图使用如下命令运行:
E:\\java\\src>java helloworld
将报类似于1中的错误:
Exception in thread "main" java.lang.NoClassDefFoundError: helloworld (wrong name: HelloWorld)
3.包含包层次的HelloWorld.java
比如上面的HelloWorld.java修改如下:
package package test.ant;
public class HelloWorld
public static void main(String[] args)
System.out.println("Hello World!");
编译时有两种方法
1. 直接编译
E:\\java\\src>javac HelloWorld.java
此时在当前目录下输出HelloWorld.class。此时,运行不能使用上面相同的方法,使用:
E:\\java\\src>java HelloWorld
运行时,出现如下错误:
Exception in thread "main" java.lang.NoClassDefFoundError: HelloWorld (wrong name: test.ant/HelloWorld)
从上述错误信息你也可以看到,系统可以找到HelloWorld类(因为当前路径包含在CLASSPATH中),但这个类属于test.ant包。所以,你要做的就是按照上述包层次,相应的创建目录层次,把上面生成的HelloWorld.class放到E:\\java\\src\\test\\ant\\目录下。运行:
E:\\java\\src >java test.ant.HelloWorld
系统打印出:
Hello World!
这里要注意的是,不能使用java test\\ant\\HelloWorld来运行,此时同样会出现如下错误:
Exception in thread "main" java.lang.NoClassDefFoundError:test\\ant\\HelloWorld (wrong name: test/ant/HelloWorld)
以上是关于exception in thread main java.lang.NoClassDefFoundError wrong name解决方法的主要内容,如果未能解决你的问题,请参考以下文章
Exception in thread "main" java.lang.UnsupportedClassVersionError
Exception in thread “main“ redis.clients.jedis.exceptions.JedisDataException: ERR no such key
错误:Exception in thread “main“ java.lang.ClassCastException
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 1
Exception in thread "main" java.lang.NullPointerException at Class.main