apache-commons-config PropertiesConfiguration: com

2019-05-01 16:04发布

I am using PropertiesConfiguration to edit property file. This allows me to retain comments. All works fine except for comments that comes after the last key..

For example input file

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

The output is as below. It lost comment that was after last key

# *** A comment
GameCheck.no = myvar

The code as below.

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.
        }
    }
}

Work around is to add a dummy property towards the end of file. Is there a correct way?

2条回答
Ridiculous、
2楼-- · 2019-05-01 16:45

This is a bug that should be reported in the project's JIRA :)

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

查看更多
劳资没心,怎么记你
3楼-- · 2019-05-01 16:49

You could try to remove the ** from the beginning of **# end coment** in case it makes a difference.

Also check out whether it helps if there is an empty line just after your last actual line.

查看更多
登录 后发表回答