我只发现How to list locally-modified/unversioned files using svnkit?,它需要实现复杂的逻辑才能在存储库的根目录上获取svn status的确切输出。

由于svnkit还提供了在jsvn中实现的命令行工具svnkit-cli,所以我在org.tmatesoft.svn.cli.svn.SVNStatusCommand.run()中找到了要使用的代码。

但是我无法使其正常工作,也找不到jsvn的确切方式。我会调试jsvn,但无法建立gradle构建,这很可能是因为我们的Windows ntlm http代理在这里...

到目前为止我尝试过的是:

StringBuffer result = new StringBuffer();
SVNStatusCommand svnStatusCall = new SVNStatusCommand();
File statusResult = new File(System.getProperty("java.io.tmpdir") + File.separator + System.currentTimeMillis() + "svnStatusCalls");
PrintStream stream = new PrintStream(statusResult);
SVNCommandEnvironment env = new SVNCommandEnvironment("mySvn", stream, stream, null);
env.getTargets().add("/home/user/svnroot");
svnStatusCall.init(env);
svnStatusCall.run();
stream.flush();
Scanner scanner = new Scanner(statusResult);
while (scanner.hasNextLine()) {
    result.append(scanner.nextLine());
}
scanner.close();


由于SVNCommandEnvironment的myTargets尚未初始化,即为null,因此失败。目的是获得字符串形式的输出。我不喜欢PrintStream和文件系统中的多余文件,但看不到其他方式。

最佳答案

AbstractSVNCommand.registerCommand(new SVNStatusCommand());

final ByteArrayOutputStream bos = new ByteArrayOutputStream();
final PrintStream stream = new PrintStream(bos);

final SVNCommandLine commandLine = new SVNCommandLine();
commandLine.init(new String[] {"status", "d:/svntest/small.svn17"});

final SVNCommandEnvironment env = new SVNCommandEnvironment("mySvn", stream, stream, System.in);
env.init(commandLine);
env.initClientManager();

final SVNStatusCommand svnStatusCall = new SVNStatusCommand();
svnStatusCall.init(env);
svnStatusCall.run();
stream.flush();
System.out.println(new String(bos.toByteArray()));

10-05 19:38