1

我已经创建了一个属性文件,并通过我的代码访问这个属性文件:

java.util.Properties clientProperties = new java.util.Properties();
        try{
            System.out.println("reading properties file");
            clientProperties.load(new FileInputStream("Get_Remove.properties"));
            String CONF_FILE_EHCACHE_XML = clientProperties.get("CONF_FILE_EHCACHE_XML").toString();
            System.out.println("ehcache_Address : " + CONF_FILE_EHCACHE_XML);
        }catch(IOException ioe){
            System.out.println("Property file read exception: ");
            ioe.printStackTrace();
        }

现在我已经将包含上述代码的项目部署为axis2中的AAR文件。但是当我启动axis2服务器并点击上述服务然后读取属性文件时,它会在axis2控制台抛出异常:

Property file read exception:
java.io.FileNotFoundException: Get_Remove.properties (The system cannot f
ind the path specified)

那么我如何从部署在axis2中的服务访问我的.property文件作为.aar文件。期待您的回答。提前致谢

4

1 回答 1

0

当您从 Java 代码访问文件时,您必须考虑路径。有很多方法可以获取文件的路径。

我猜您的属性文件位于您的 AAR 文件的根目录中。

请尝试以下代码:

clientProperties.load(this.getClass().getClassLoader().getResourceAsStream("Get_Remove.properties"));

我希望这有帮助。

谢谢!

于 2013-06-28T04:37:11.140 回答