我的问题是。我正在写一个程序来预订。为此,我使用Filewriter和Buffered write将其写入txt文件。输入是通过simpleInoutDialog并且它给出了一个带有模板hh:mm:ss的字符串。
这是我写的txt文件和一个名字 例如:
08:00:00
Tom Hanks
06:20:00
Henry Bigs
我要做的是对日期进行排序,以便我可以轻松阅读? 有什么帮助吗?
答案 0 :(得分:0)
<configuration>
<appender name="FILE" class="ch.qos.logback.core.FileAppender">
<file>testFile.log</file>
<append>true</append>
<!-- encoders are assigned the type
ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->
<encoder>
<pattern>%date{HH:mm:ss} - %msg%n</pattern>
</encoder>
</appender>
<root level="DEBUG">
<appender-ref ref="FILE" />
</root>
</configuration>
框架将为您排序消息。