Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

apache-commons-config PropertiesConfiguration: comments after last property is lost

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?

like image 864
Jayan Avatar asked Nov 05 '22 20:11

Jayan


1 Answers

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

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

like image 91
Emmanuel Bourg Avatar answered Nov 11 '22 12:11

Emmanuel Bourg