读取properties文件的信息
Posted zhangjinru123
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了读取properties文件的信息相关的知识,希望对你有一定的参考价值。
1、properties配置文件的信息
fcsimage_path=C://FCSImage
2、Java代码
public final class Config { private static final Object lock = new Object(); private static volatile Properties config; private Config(){} private static Properties getInstance(){ if (config == null) { //double lock check synchronized (lock) { // declare a private static Object to use for mutex if( config == null ){ // have to do this inside the sync config = new Properties(); } } try { config.load(Config.class.getClassLoader().getResourceAsStream("common.properties")); } catch (IOException e) { e.printStackTrace(); } } return config; } public static String fcsimage_path() { return getInstance().getProperty("fcsimage_path"); } }
以上是关于读取properties文件的信息的主要内容,如果未能解决你的问题,请参考以下文章