Adding comments in a properties file line by line

后端 未结 3 662
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-01-18 03:02

This is something which I want to do in properties file

#Comments about key Value pair 1
Key_1=value_1


#Comments about key Value pair 2
Key_2=value_2

#Com         


        
3条回答
  •  不知归路
    2021-01-18 03:51

    You can use the Apache Commons Configuration to write and read Properties files, specifically the setComment() function in a PropertiesConfigurationLayout which allows you to specify a comment for each property.

    Note that above links refer to Commons Configuration v1.x, while v2.0 has been released in the meantime, which has different package names.

提交回复
热议问题