从svn通过javahl简单结账

时间:2011-07-07 09:21:02

标签: java svn

我想使用javahl从java程序中的svn中检出源代码。 尝试Javahl,因为它似乎是免费的,也用于商业用途。

我需要将http://example.com/svn/project1/trunk之类的内容签出到本地目录。

这应该是一个相当直接的过程,只需几行代码?我仍然无法找到关于如何做到这一点的任何教程。

你能给出一些示例java行吗?

2 个答案:

答案 0 :(得分:0)

我知道这个问题很旧,但是今天我不得不做类似的事情。我也找不到任何好的教程,最终以unit tests作为参考。

以下一些对我有用的Java代码:

import org.apache.subversion.javahl.ClientException;
import org.apache.subversion.javahl.SVNClient;
import org.apache.subversion.javahl.types.Depth;
import org.apache.subversion.javahl.types.Revision;
...
static void checkout(String reproUrl, String workingDirectory) throws ClientException {
    SVNClient client = new SVNClient();
    client.checkout(
        reproUrl,
        workingDirectory,
        Revision.HEAD,
        Revision.HEAD,
        Depth.infinity,
        false,
        false);
}

如果需要进行身份验证,则SVNClientusername(String)password(String)方法。

答案 1 :(得分:-2)

外观 http://wiki.svnkit.com/Getting_Started_With_SVNKithttp://wiki.svnkit.com/Managing_A_Working_Copy

private static long checkout( SVNURL url , SVNRevision revision , File destPath , boolean isRecursive ) throws SVNException {

   SVNUpdateClient updateClient = ourClientManager.getUpdateClient( );
   /*
    * sets externals not to be ignored during the checkout
     */
    updateClient.setIgnoreExternals( false );
    /*
     * returns the number of the revision at which the working copy is 
    */
   return updateClient.doCheckout( url , destPath , revision , revision , isRecursive );

}