如何使用java从SVN存储库获取所有文件和目录

时间:2013-05-14 06:02:14

标签: java svnkit

我有一项任务要完成。我想连接到SVN存储库,必须使用java代码将所有目录和文件从svn下载到我的本地系统。我是新手并尝试使用示例从http://svnkit.com/kb/dev-guide-commit-operation.html读取单个文件内容,但在获取文件内容和属性时它会出现异常错误:svn:E170001:“https://netspurt.unfuddle.com:443 Unfuddle所需的身份验证Subversion Repository'。请任何人都能解释一下

贝娄代码对我有用:

private static SVNClientManager ourClientManager;
     public void DownloadWorkingCopy(String svnLocation,String svnUserName,String svnPassword){

String locationForSVNProj="C:\\SVNLOC";

        DefaultSVNOptions options = SVNWCUtil.createDefaultOptions(true);
        ourClientManager = SVNClientManager.newInstance(options, svnUserName, svnPassword);
        SVNUpdateClient updateClient = ourClientManager.getUpdateClient( );
        updateClient.setIgnoreExternals( false );
        SVNRevision rev=SVNRevision.HEAD;
        File file=new File(locationForSVNProj);
        try{
             long revision1=updateClient.doCheckout( SVNURL.parseURIEncoded(svnLocation) ,file , rev , rev , true);

        }catch(Exception e){e.printStackTrace();}


    }

2 个答案:

答案 0 :(得分:1)

“需要身份验证”问题表示服务器需要身份验证,但您未向ISVNAuthenticationManager提供正确的SVNClientManager实施。 SVNKit支持不同的身份验证方式。

如果您知道自己的凭据是什么,并且已修复,则可以使用BasicAuthenticationManager实施。

如果要使用存储在~/.subversion目录中的凭据,请使用DefaultSVNAuthenticationManager实现(有一种方便的方法来构造它:SVNWCUtil.createDefaultAuthenticationManager()但请注意,这与Subversion命令相对应--non-interactive选项)。如果您需要允许从控制台输入密码的身份验证管理器,请查看SVNCommandEnvironment#createClientAuthenticationManager()实现。

最后我想注意SVNClientManager是过时的一部分(虽然仍然支持)。而不是喜欢我的另一个answer中的SvnOperationFactory类,它也有setAuthenticationManager()setter。

如果这很重要,我是SVNKit开发人员之一。

答案 1 :(得分:0)

解决方案基于Dmitry Pavlenko的回答:

import org.tmatesoft.svn.core.SVNDepth;
import org.tmatesoft.svn.core.SVNException;
import org.tmatesoft.svn.core.SVNURL;
import org.tmatesoft.svn.core.auth.ISVNAuthenticationManager;
import org.tmatesoft.svn.core.io.SVNRepository;
import org.tmatesoft.svn.core.io.SVNRepositoryFactory;
import org.tmatesoft.svn.core.wc.SVNClientManager;
import org.tmatesoft.svn.core.wc.SVNRevision;
import org.tmatesoft.svn.core.wc.SVNUpdateClient;
import org.tmatesoft.svn.core.wc.SVNWCUtil;

import java.io.File;

private static void obtenerCodigoFuenteSVN() {        
    final String url = "http://IPSVN:PORT/svn/PROJECT";
    final String destPath = "PATH_DIR_DOWNLOAD";

    final String user = "XXXX";
    final String password = "XXXX";

    SVNRepository repository = null;

    try {
        //initiate the reporitory from the url
        repository = SVNRepositoryFactory.create(SVNURL.parseURIEncoded(url));
        //create authentication data
        ISVNAuthenticationManager authManager = SVNWCUtil.createDefaultAuthenticationManager(user, password.toCharArray());
        repository.setAuthenticationManager(authManager);
        //output some data to verify connection
        System.out.println("Repository Root: " + repository.getRepositoryRoot(true));
        System.out.println("Repository UUID: " + repository.getRepositoryUUID(true));
        //need to identify latest revision
        long latestRevision = repository.getLatestRevision();
        System.out.println("Repository Latest Revision: " + latestRevision);

        //create client manager and set authentication
        SVNClientManager ourClientManager = SVNClientManager.newInstance();
        ourClientManager.setAuthenticationManager(authManager);
        //use SVNUpdateClient to do the export
        SVNUpdateClient updateClient = ourClientManager.getUpdateClient();
        updateClient.setIgnoreExternals(false);
        updateClient.doExport(repository.getLocation(), new File(destPath),
                SVNRevision.create(latestRevision), SVNRevision.create(latestRevision),
                null, true, SVNDepth.INFINITY);

    } catch (SVNException e) {
        System.out.println("ERROR TO ACCESS REPOSITORY");
        e.printStackTrace();
    } finally {
        System.out.println("Done");
    }
}

这是maven POM文件中的依赖项:

   <dependency>
          <groupId>org.tmatesoft.svnkit</groupId>
          <artifactId>svnkit</artifactId>
          <version>1.8.11</version>
   </dependency>