java获取config下文件

private static final String keystore="keystore.jks";
InputStream is=Thread.currentThread().getContextClassLoader().getResourceAsStream(keystore);
 
 
 
Properties property = new Properties();
property.load(zdwxTempApp.getClass().getClassLoader().getResourceAsStream(("config.properties")));
 
 
//解决中文乱码问题
Properties property = new Properties();
InputStream inputStream = ListenerP2PLogAPP.class.getResourceAsStream("/config.properties");  
BufferedReader bf = new BufferedReader(new InputStreamReader(inputStream));  
property.load(bf); 

转载于:https://www.cnblogs.com/weiloong/p/5956187.html

你可能感兴趣的:(java获取config下文件)