I am using the java properties class to append a value to my config file with this code.(I stripped out error handling and whatnot)
Properties configFile = new Properties();
configFile.setProperty(key, value);
configFile.store(new FileOutputStream("plugins/WirelessRedstone/receivers.properties", true), null);
When I append a key value pair, the current date and time is added before my pair. example #Thu May 26 03:39:59 EDT 2011.
How can I make this stop?
Thanks a bunch, giodamelio
As per Java Docs of store method in Properties..it always writes that line
you can write your own store method for this.