Apache Commons配置文件位置

时间:2015-03-10 19:38:34

标签: java apache

在我的Web应用程序中,我想使用apache commons配置。 该文件在war文件的类中可用,但它无法读取说无法找到该文件。有人可以帮我举个例子吗?

1 个答案:

答案 0 :(得分:0)

在Servlet中,您应该能够使用该代码之王访问您的配置文件:

ServletContext context = getServletContext();
String confFilePath = context.getRealPath("/WEB-INF/classes/my.conf");
File file = new File(confFilePath);
System.out.println("My conf. file is here: " + file.getAbsolutePath());