美文网首页
ClassNotFoundException与NoClassDe

ClassNotFoundException与NoClassDe

作者: 剑客kb | 来源:发表于2019-04-01 08:38 被阅读0次

    前者强调运行时无法匹配到指定参数名称的类,后者强调编译时没问题,运行时却无法实例化一个类。NoClassDefFoundError是一个错误(Error),而ClassNotFoundException是一个异常,在Java中对于错误和异常的处理是不同的,我们可以从异常中恢复程序但却不应该尝试从错误中恢复程序。
    修复ClassNotFoundException最常见的解决方法是检查是否依赖了相关包或者相关包是否有冲突。

    public class TestClassNotFound {
        public static void main(String[] args){
            try {
                Class.forName("oracle.jdbc.driver.OracleDriver");
            } catch (ClassNotFoundException e) {
                e.printStackTrace();
            }
        }
    }
    输出:
    java.lang.ClassNotFoundException: oracle.jdbc.driver.OracleDriver
        at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
        at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:335)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
        at java.lang.Class.forName0(Native Method)
        at java.lang.Class.forName(Class.java:264)
        at hello.TestClassNotFound.main(TestClassNotFound.java:6)
    
    public class ClassWithInitErrors {
        static int data = 1 / 0;//静态变量data初始化会失败,因为0除不尽。注意这个变量是静态的,所以编译是通过的。
    }
    
    public class NoClassDefFoundErrorExample {
        public ClassWithInitErrors getClassWithInitErrors() {
            ClassWithInitErrors test;
            try {
                test = new ClassWithInitErrors();
            } catch (Throwable t) {
                System.out.println(t);//抛出的异常是ExceptionInInitializerError
            }
            test = new ClassWithInitErrors();//因为ClassWithInitErrors初始化会抛异常,导致无法实例化ClassWithInitErrors,异常栈会显示此处有问题
            return test;
        }
    
        public static void main(String[] args) {
            NoClassDefFoundErrorExample sample= new NoClassDefFoundErrorExample();
            sample.getClassWithInitErrors();
        }
    }
    输出:
    java.lang.ExceptionInInitializerError
    Exception in thread "main" java.lang.NoClassDefFoundError: Could not initialize class hello.ClassWithInitErrors
        at hello.NoClassDefFoundErrorExample.getClassWithInitErrors(NoClassDefFoundErrorExample.java:11)
        at hello.NoClassDefFoundErrorExample.main(NoClassDefFoundErrorExample.java:17)
    

    相关文章

      网友评论

          本文标题:ClassNotFoundException与NoClassDe

          本文链接:https://www.haomeiwen.com/subject/licsvqtx.html