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

java加载属性资料

2012-10-07 
java加载属性文件String path //属性文件的路径try {Properties prop new Properties()InputStrea

java加载属性文件

String path = "";  //属性文件的路径  try {Properties prop = new Properties();InputStream is = new BufferedInputStream(new FileInputStream(path));  prop.load(is);} catch (Exception e) {e.printStackTrace(); }

热点排行