用Filewriter编写的txt文件中的时间排序

时间:2012-03-08 20:35:33

标签: java sorting filewriter bufferedwriter

我的问题是。我正在写一个程序来预订。为此,我使用Filewriter和Buffered write将其写入txt文件。输入是通过simpleInoutDialog并且它给出了一个带有模板hh:mm:ss的字符串。

这是我写的txt文件和一个名字 例如:

08:00:00
Tom Hanks
06:20:00
Henry Bigs

我要做的是对日期进行排序,以便我可以轻松阅读? 有什么帮助吗?

1 个答案:

答案 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>

框架将为您排序消息。