当前位置:  技术问答>java相关

Exception in thread "main" java.lang.NoClassDefFoundError是什么错误?

    来源: 互联网  发布时间:2015-04-23

    本文导语:  代码如下: import java.awt.*; import java.awt.event.*; import javax.swing.*; class CenteredFrame extends JFrame {  public CenteredFrame()    {  setTitle("CenteredFrame");       addWindowListener(new WindowAdapter()          {  public void window...

代码如下:
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

class CenteredFrame extends JFrame
{  public CenteredFrame()
   {  setTitle("CenteredFrame");
      addWindowListener(new WindowAdapter()
         {  public void windowClosing(WindowEvent e)
            {  System.exit(0);
            }
         } );
      Toolkit tk = Toolkit.getDefaultToolkit();
      Dimension d = tk.getScreenSize();
      int screenHeight = d.height;
      int screenWidth = d.width;
      setSize(screenWidth / 2, screenHeight / 2);
      setLocation(screenWidth / 4, screenHeight / 4);
      Image img = tk.getImage("icon.gif");
      setIconImage(img);
   }
}

public class CenteredTest
{  public static void main(String[] args)
   {  JFrame frame = new CenteredFrame();
      frame.show();  
   }
}
编译过来,但是执行时报错:
C:jdkbin>java CenteredTest
Exception in thread "main" java.lang.NoClassDefFoundError: CenteredTest
请问是何原因引起的?

|
你的CLASS文件在哪里?如果就在c:jdkbin下
这样执行c:jdkbin>java -classpath . CenteredTest
如果在其它路径比如d:myjavafile
这样执行c:jdkbin>java -classpath d:myjavafile CenteredTest


|
看看classpath环境变量中是不是有当前路径?  "."

|
o srroy, 没仔细看,,,你有。。
sorry

这个程序在我这里可以运行阿。
是否你的classpath有问题?

    
 
 

您可能感兴趣的文章:

  • 这个错误是什么原因Exception in thread "main" java.lang.NoClassDefFoundError:
  • Exception in thread "main" java.lang.NoClassDefFoundError: xunhuan
  • Exception in thread "main" java.lang.NoClassDefFoundError: Hello/class
  • 菜鸟求救!(exception in thread "main" java.lang.NoClassDefFoundError)
  • Exception in thread "main" java.lang.NoClassDefFoundError
  • 我用javac编译HelloWorldapp.java无错误,但运行时出现该错误:Exception in thread "main" java.lang.NoClassDefFoundError: helloworldapp
  • 请问 pathclass设置正确 语法正确 编译通过 但在执行时 显示"Exception in thread "main" java.lang.NoClassDefFoundError"…………不解
  • 什么问题:Exception in thread "main" java.lang.NoClassDefFoundError:test(runtime)
  • 为什么还出现Exception in thread "main" java.lang.NoClassDefFoundError: HelloWorld
  • 很简单的显示窗口的程序出错 Exception in thread "main" java.lang.NoClassDefFoundError: FirstTest
  • 初级问题:为什么出现Exception in thread "main" java.lang.NoClassDefFoundError错误?
  • 这个错误是因为什么?Exception in thread "main" java.lang.NoClassDefFoundError:Example
  • 一个初学者向各位请教 Exception in thread "main" java.lang.NoClassDefFoundError
  • java命令执行类文件时不在bin的目录下出现Exception in thread "main" java.lang.NoClassDefFoundError:
  • 初学者问题:Exception in thread "main" java.lang.NoClassDefFoundError: Welcome
  • java程序运行时错误Exception in thread "main" java.lang.NoClassDefFoundError: myjava
  • Exception in thread "main" java.lang.NoClassDefFoundError:d:javahelloworld是怎么回事
  • Exception in thread "main" java.lang.NoClassDefFoundError: test01
  • 问个低级的问题,我编译的时候没问题,可运行时候出现如下提示:Exception in thread "main" java.lang.NoClassDefFoundError: NativeDem
  • 为什么 总是 Exception in thread "main" java.lang.NoClassDefFoundError: NewsRobot/class????
  • 我在测试我.class文件时总提示这样的错误:Exception in thread "main" java.lang.noclassdefoundError:myclass
  • 出现了错误:java.lang.NoClassDefFoundError: com/inprise/ejb/Container;和Exception in thread "main"
  • 最简单的helloworld程序怎么出现Exception in thread "main" java.lang.NoClassDefFoundError: sunhello错误?
  • exception in thread "main" java.lang.NoClassDeffoundError:FindMax/class出现这种错误提示,我错在哪呢?
  • 我安装完j2sdk1.4.1后,设置完path和classpath后,测试java app 提示错误:Exception in thread "main" java.lang.NoclassDefFoundError:
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • java命名空间java.lang类exception的类成员方法: exception定义及介绍
  • 对于相同的Exception,如何分辨造成Exception的原因
  • java命名空间java.io接口objectstreamconstants的类成员方法: tc_exception定义及介绍
  • "B_FundMaster.java": Error #: 360 : unreported exception: java.lang.Exception; must be caught or declared to be thrown at line 6
  • java命名空间javax.lang.model.element枚举elementkind的类成员方法: exception_parameter定义及介绍
  • 怪怪的EXCEPTION声明
  • 请问a method能return an exception吗?能写个例子看看吗?
  • linux操作系统的异常类(exception)不支持标准c++?
  • exception-handler parameter表示什么?
  • unreported exception: java.lang.ClassNotFoundException
  • 请问java里能自己定义新的Exception吗?
  • Exception in thread "main"
  • 请问exception类中的方法printStackTrace()是做什么用的?
  • 如何将Exception.printStackTrace()显示出来的内容存到String变量中
  • Applet报错:Exception:java.lang.NullPointerException
  • java运行exception问题,急!!!
  • exception in thread main???
  • 关于运行JAVA exception in thread "mian"
  • 为什么会是:) Runtime Exception ,有些看不懂:(
  • 如何熟悉Exception的种类?完全通过学习API的document?
  • (急,急,急!!!!)怎样把(Exception e)转换成String 型的


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3