我使用Maven和存儲特性在src/main/resources
文件,我可以讀細,如:修改屬性文件中的META-INF
properties.loadFromXML(this.getClass().getClassLoader().
getResourceAsStream("META-INF/properties.xml");
是否有可能再寫入該文件時,它被打包作爲一個罐子?我已經試過如下:
properties.storeToXML(new FileOutputStream(new File(this.getClass().getClassLoader().
getResource("META-INF/properties.xml").toURI())), "");
,因爲它是將文件保存到target/classes/META-INF
這個工程在Eclipse中,而不是在一個罐子包裝的,所以是有可能實現同樣的事情?