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