0

好的,所以我应该制作一个脚本来解析来自 irc 频道的所有聊天日志,组合匹配名称的那些,然后按日期对聊天日志进行排序。

这是一个示例聊天记录:

    jul 29 19:20:53 <lol> lolfile3
    jul 31 19:20:53 <lol> lolfile3321
    aug 1 19:20:53 <lol> lolfile31324
    jul 30 19:20:53 <lol> lolfile32

我需要按时间戳(7 月 30 日 19:20:53)订购它们,但是我已经尝试了几个小时但无济于事。

这是我已经拥有的代码(这是文件合并、文件写入和所有内容。时间戳是我需要做的最后一件事!)

我不知道如何在我的问题中添加代码,所以我将您链接到 pastebin: http: //pastebin.com/2VrSRZZr

如果您能通过发布代码来帮助我,非常感谢。显然我不希望被喂食,但一些代码会很好。

4

1 回答 1

0

我不完全确定您示例中的“”是什么,因此这可能不完全正确,但它显示了如何将时间戳字符串转换为可比较的对象。希望这能让你走上正确的轨道。

DateFormat dateFormat = new SimpleDateFormat("MMM dd yyyy")
List<String> lines = readLines(); // use a function of your to read the lines
List<LogEntry> entries = new LinkedList<LogEntry>();
for ( String line : lines ) {
  int splitIndex = line.indexOf("<log>");
  String time = line.substring(0,splitIndex);
  Date date = dateFormat.parse(time);
  entries.add(new LogEntry(date,line.substring(splitIndex));
}

Collections.sort(entries);


// create a class to hold the log contents and the timestamp

class LogEntry implements Comparable<LogEntry> {
    private final Date time;
    private final String entry;

    public void compare(LogEntry other) {
       return time.compareTo(other.time);
    }
}

编辑:我运行了您在 pastebin 中创建的代码,输出为

Fri Jul 29 17:09:50 EDT 2011 <phl0w> tes
Sun Jul 31 17:08:49 EDT 2011 <yyyy> alewrwae
Sun Jul 31 17:09:50 EDT 2011 <phl0w> tes
Sun Jul 31 17:10:49 EDT 2011 <Andy_> Speed
Sun Jul 31 17:10:51 EDT 2011 <Andy_> lol Speed
Sun Jul 31 17:11:51 EDT 2011 <xxxx> wrkjaer
Sun Jul 31 19:20:50 EDT 2011 <phl0w> lolfile1
Sun Jul 31 19:20:53 EDT 2011 <phl0w> lolfile3
于 2012-07-31T23:36:38.190 回答