我确信这个问题在多个层面上都是愚蠢的或令人讨厌的...。

我在Java中使用SVNKit。

我想获取在特定提交中提交的文件列表。我有发行ID。通常我会运行类似

svn日志url / to / repository -qv -r12345

我会像往常一样获得命令列表。

我不知道如何在SVNKit中做类似的事情。有小费吗? :)

最佳答案

final SvnOperationFactory svnOperationFactory = new SvnOperationFactory();
final SvnLog log = svnOperationFactory.createLog();
log.setSingleTarget(SvnTarget.fromURL(url));
log.addRange(SvnRevisionRange.create(SVNRevision.create(12345), SVNRevision.create(12345)));
log.setDiscoverChangedPaths(true);
final SVNLogEntry logEntry = log.run();

final Map<String,SVNLogEntryPath> changedPaths = logEntry.getChangedPaths();
for (Map.Entry<String, SVNLogEntryPath> entry : changedPaths.entrySet()) {
    final SVNLogEntryPath svnLogEntryPath = entry.getValue();
    System.out.println(svnLogEntryPath.getType() + " " + svnLogEntryPath.getPath() +
            (svnLogEntryPath.getCopyPath() == null ?
                    "" : (" from " + svnLogEntryPath.getCopyPath() + ":" + svnLogEntryPath.getCopyRevision())));
}


如果要为修订范围运行一个日志请求,则应在接收器实现中使用log.setReceiver()调用。

09-26 20:21