Java 属性类附加日期

发布于 2024-11-09 23:07:49 字数 375 浏览 1 评论 0原文

我正在使用 java 属性类通过此代码将值附加到我的配置文件。(我删除了错误处理等)

Properties configFile = new Properties();
configFile.setProperty(key, value);
configFile.store(new FileOutputStream("plugins/WirelessRedstone/receivers.properties", true), null);

当我附加键值对时,当前日期和时间会添加到我的键值对之前。示例#Thu May 26 03:39:59 EDT 2011

我怎样才能阻止这一切?

非常感谢,乔达梅里奥

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

逆夏时光 2024-11-16 23:07:49

根据属性中存储方法的 Java 文档..它总是写该行

接下来,注释行始终写入,由 ASCII # 字符、当前日期和时间(就好像由当前时间的 Date 的 toString 方法生成)和一行组成由 Writer 生成的分隔符。

您可以为此编写自己的存储方法。

As per Java Docs of store method in Properties..it always writes that line

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.

you can write your own store method for this.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文