Property Datei: key value speicherung --> ohne Kommentar speichern?

Aleyna23

Mitglied
Hallo,

weiß jmd. zufällig, wie man die Kommentar Speicherung "deaktivieren" kann, wenn man einen KEY und einen Value in eine Property Datei speichert?
Beispiel:

#Wed Apr 25 16:20:12 CEST 2007
test.hallo=hallo

Ich will nur:
test.hallo=hallo

speichern.

So sieht der Code aus:
Code:
 property.store(new FileOutputStream(file, true), null);

Danke im Voraus.
 
Da musst du scheinbar leben:

Next, a comment line is always written, consisting of an ASCII # character, the current date and time (as if produced by the toString method of Date for the current time), and a line separator as generated by the Writer.

Kurz gesagt wird die Zeit immer rausgeschrieben nach der API
 
Zurück