SVNkit无法创建SVNRepoitory

时间:2008-09-25 09:22:13

标签: java svn svnkit

我正在尝试使用SVNkit在两个svn url上运行diff。问题是我在调用diff.doDiff时收到错误。

  

org.tmatesoft.svn.core.SVNException:svn:无法创建   SVNRepository对象   'http://svn.codehaus.org/jruby/trunk/jruby/src/org/jruby/Finalizable.java'     在   org.tmatesoft.svn.core.internal.wc.SVNErrorManager.error(SVNErrorManager.java:55)     在   org.tmatesoft.svn.core.internal.wc.SVNErrorManager.error(SVNErrorManager.java:40)     在   org.tmatesoft.svn.core.io.SVNRepositoryFactory.create(SVNRepositoryFactory.java:199)     在   org.tmatesoft.svn.core.wc.DefaultSVNRepositoryPool.createRepository(DefaultSVNRepositoryPool.java:213)     在   org.tmatesoft.svn.core.wc.SVNClientManager.createRepository(SVNClientManager.java:242)     在   org.tmatesoft.svn.core.wc.SVNBasicClient.createRepository(SVNBasicClient.java:231)     在   org.tmatesoft.svn.core.wc.SVNDiffClient.doDiffURLURL(SVNDiffClient.java:769)     在   org.tmatesoft.svn.core.wc.SVNDiffClient.doDiff(SVNDiffClient.java:310)     在SVNTest.main(SVNTest.java:30)

我已经仔细检查了URL(我可以在TortoiseSVN客户端中打开它们)。任何人都可以帮我知道发生了什么事吗?我已经发布了我在下面运行的代码。

SVNClientManager manager = SVNClientManager.newInstance(SVNWCUtil.createDefaultOptions(false), user, pass);

SVNDiffClient diff = manager.getDiffClient();
    //ISVNDiffStatusHandler diffStatus = new ISVNDiffStatusHandler();

try {
SVNURL oldURL = SVNURL.parseURIDecoded(url);    
diff.doDiff(SVNURL.parseURIDecoded(url), SVNRevision.create(oldVersion), SVNURL.parseURIDecoded(url), SVNRevision.HEAD, false, false, System.out);
} catch (SVNException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}

1 个答案:

答案 0 :(得分:19)

您是否调用了以下静态方法?

  

DAVRepositoryFactory.setup();

在访问任何http://存储库和类似的

之前,需要调用它
  

SVNRepositoryFactoryImpl.setup();

应该用于svn://存储库。