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

加载property资料

2012-10-29 
加载property文件ServletContext contextInputStream in context.getResourceAsStream(/WEB-INF/test.

加载property文件

ServletContext context;InputStream in = context.getResourceAsStream("/WEB-INF/test.properties");Properties p = new Properties();if (in != null) {try {p.load(in);edition = p.getProperty("test", null);} catch (IOException e) {throw new RuntimeException(e);}}
?

热点排行