如何使用java org.apache.commons.configuration2在.properties文件中注释参数?

时间:2019-05-02 12:09:33

标签: java configuration-files apache-commons properties-file

我想使用java org.apache.commons.configuration2完成我的代码以注释configuration.properties文件中的资源。如何将.property文件传递到现有代码中并保存该文件?

我已经使用java org.apache.commons.configuration2库来编写代码。但是我无法弄清楚如何将.properties文件传递到代码中以注释代码行并将其保存在同一文件中?

Config.properties - Actual

    processor=PropertyProcessor
    MessageHeaderProcessor=destQueue

Config.properties - Expected

    ;processor=PropertyProcessor
    ;MessageHeaderProcessor=destQueue

Code:
    import org.apache.commons.configuration2.PropertiesConfiguration;
        private static void modifypropertyfile(String fileName){
            PropertiesConfiguration pc = new PropertiesConfiguration();
             pc.getLayout().setComment("resourcekey","resourcevalue");
        }

0 个答案:

没有答案