properties类也是基于流,不算很难,下面直接上代码:
Dog=com.entity.Dog
Cat=com.entity.Cat
Pig=com.entity.Pig
Bird=com.entity.Bird
...
Properties properties = new Properties(); //配置文件读取对象
properties.load(new FileInputStream("path.properties")); //加载配置文件
String ss = properties.get("Person").toString(); //获取KEY所对应的值 即类的全路径
System.out.println(ss);
//通过反射创建对象
//...
关于工厂模式+反射+properties的案例,可以看这篇文件章:Java设计模式之工厂模式文章来源:https://www.toymoban.com/news/detail-807069.html
本电子目录: 《Java基础的重点知识点全集》文章来源地址https://www.toymoban.com/news/detail-807069.html
到了这里,关于第9章-第1节-关于Java中properties配置文件的介绍的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!