class.forName( )报错
程序员文章站
2022-03-11 08:51:16
从属性配置文件.properties中读取类名,调用class.forName( )方法获取该类字节码时,发生ClassNotFound错误:properties文件:name="Thread.TheThirdThread"获取字节码并new对象:FileReader reader = new FileReader("Exercise01/src/Reflect/info.properties");Properties pro = new Properties();pro.load(rea...
从属性配置文件.properties中读取类名,调用class.forName( )方法获取该类字节码时,发生ClassNotFound错误:
properties文件:
name="Thread.TheThirdThread"
获取字节码并new对象:
FileReader reader = new FileReader("Exercise01/src/Reflect/info.properties");
Properties pro = new Properties();
pro.load(reader);
reader.close();
String name = pro.getProperty("name");
Class c = Class.forName(name);
Object o = c.newInstance();
System.out.println(o);
发生错误:
Exception in thread "main" java.lang.ClassNotFoundException: "Thread.TheThirdThread"
原因是配置文件中多写了双引号,从而导致取出的类名带双引号,接着引发ClassNotFoundException。将双引号去掉可解决。
properties配置文件:
# 不要加双引号!!!
name=Thread.TheThirdThread
另:class.forName( )方法中一定要填写完整类名(即包名+类名),即便该类与调用forName方法的类在同一包下,也需填写完整类名!
本文地址:https://blog.csdn.net/qq_43183860/article/details/107394649
推荐阅读
-
详解mysql密码遗忘和登陆报错的问题解决
-
解决Python中字符串和数字拼接报错的方法
-
Python首次安装后运行报错(0xc000007b)的解决方法
-
django model去掉unique_together报错的解决方案
-
解决eclipse启动时报错Failed to create the Java Virtural Machine.问题的方法
-
重新restore了mysql到另一台机器上后mysql 编码问题报错
-
spring cloud consul注册的服务报错critical的解决
-
python中异常报错处理方法汇总
-
解决maven启动Spring项目报错的问题
-
Python基础中所出现的异常报错总结