PropertiesConfiguration

PropertiesConfiguration

我正在使用PropertiesConfiguration编辑属性文件。这使我可以保留评论。除了最后一个键之后的注释,其他所有方法都可以正常工作。

例如输入文件

# *** A comment
GameCheck.no=No
**#  end coment**

输出如下。它失去了最后一个键之后的评论
# *** A comment
GameCheck.no = myvar

代码如下。
package trials;

import org.apache.commons.configuration.ConfigurationException;
import org.apache.commons.configuration.PropertiesConfiguration;
import org.apache.commons.configuration.PropertiesConfigurationLayout;

import java.io.FileWriter;
import java.io.IOException;

public class EditVersion {

    public static void main(String[] args) {

        try {
            PropertiesConfiguration config =  new PropertiesConfiguration("C:\\try\\in.properties");
            config.setProperty("application.version", "myvar");
            PropertiesConfigurationLayout layout = config.getLayout();

            config.save( new FileWriter( "c:/try/out.props"));
        } catch (ConfigurationException e) {

        } catch (IOException e) {
            e.printStackTrace();  //To change body of catch statement use File | Settings | File Templates.
        }
    }
}

解决方法是在文件末尾添加一个虚拟属性。有没有正确的方法?

最佳答案

这是应该在项目的JIRA中报告的错误:)

https://issues.apache.org/jira/browse/CONFIGURATION

10-05 23:27