The_Lost_Avatar
The_Lost_Avatar

Reputation: 990

Adding comments in a properties file line by line

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

#Comments about key Value pair 3
Key_3=value_3

Right now what I am able to do with my file is

#OMG, It works!
#Mon Oct 14 01:22:10 IST 2013
Key_1=Value_1
Key_2=Value_2

Is there any way of doing such a thing

Upvotes: 7

Views: 15470

Answers (3)

jmiserez
jmiserez

Reputation: 3109

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.

Upvotes: 4

user2420898
user2420898

Reputation: 149

I think basically you want the property with a comment with description. If that is the case

Properties props=new Properties();
props.add("key","value");
FileOutputStream output=new FileOutputStream("props.dat",true); //so that it won't create a new file since it is 'true')
 props.store(output,"Sample properties"); 

Upvotes: 0

Paul Wagland
Paul Wagland

Reputation: 29116

There is no way to do what you want using the standard Properties class.

You can, of course, do this by writing the file out yourself. The main thing that you need to be careful of is embedded newlines, and embedded = and : in your keys. However, if you really want to be able to store individual comments about each pair, then you probably want a class that maps from <key>⇒<value,comment>, and then use that map to generate your properties file.

Upvotes: 1

Related Questions