首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

加载properties资料至java.util.Properties对象

2012-12-18 
加载properties文件至java.util.Properties对象java.net.URL url Thread.currentThread().getContextCla

加载properties文件至java.util.Properties对象

java.net.URL url = Thread.currentThread().getContextClassLoader()                     .getResource("struts2ejb3/jndi.properties");Properties props = new Properties();props.load(url.openStream());

热点排行