读书人

加载property资料

发布时间: 2012-10-29 10:03:53 作者: rapoo

加载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);}}
?

读书人网 >编程

热点推荐