class.forName( )报错
程序员文章站
2022-06-21 13:44:40
从属性配置文件.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报错errno:13-Permissiondenied的解决办法
-
C# Excel导出超出65536行报错 Invalid row number (65536) outside allowable range (0..65535)
-
关于webpack打包报错Chunk.entrypoints:UseChunks.groupsIterableandfilterbyinstanceofEntrypointinstead的解决办法
-
出现 vue arr.some is not a function 报错的解决方案
-
linux 执行 javac 报错 javac: command not found
-
sudo service: command not found 报错的解决方法
-
DiskGenius软件报错提示终止位置参数溢出该怎么办?
-
IE8下Jquery获取select选中的值post到后台报错问题
-
常见Web报错代码
-
PHP Undefined index报错的修复方法