如何使用Java tfs-sdk从tfs获取变更集信息

时间:2014-11-06 12:28:15

标签: java eclipse tfs

我尝试使用以下代码

     TFSTeamProjectCollection tpc =
                new TFSTeamProjectCollection(URIUtils.newURI(COLLECTION_URL), credentials );

            VersionControlClient srcctrl = tpc.getVersionControlClient();
         Changeset[] chngset;
        try {
            chngset = srcctrl.queryHistory("http://******/tfs/SpectaTestCollection/", LatestVersionSpec.INSTANCE, 0, RecursionType.FULL, null, new DateVersionSpec("6/10/2014"), LatestVersionSpec.INSTANCE, Integer.MAX_VALUE, false, true, false, true);

             for(Changeset ch : chngset)
                {
                    System.out.println("Change Set ID : "+ ch.getChangesetID());
                    System.out.println("Owner : "+ ch.getOwner());
                }
        } catch (ServerPathFormatException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } catch (ParseException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

但eveytime收到此错误:D:\ WorkSpace \ test-workspace \ tfsplay.game \ http:******** \ tfs \ SpectaTestCollection没有工作文件夹映射。

其中“D:\ WorkSpace \ test -workspace \ tfsplay.game”是我的本地工作区。

任何人都可以帮助我指导正确的方法吗

2 个答案:

答案 0 :(得分:4)

不要将URL传递给queryHistory方法,传递服务器路径或本地路径。

您收到此错误是因为您传递的路径不是服务器路径(不以$/开头),因此系统正在尝试了解您映射到{{1的服务器路径}}。由于该URL也不是本地路径,因此您已收到该错误。

如果要查看所有历史记录,请传递服务器路径http://...etc

答案 1 :(得分:1)

public class TestTfsExample {

    public static void main(String[] args) 
    { 


        Credentials cred=new UsernamePasswordCredentials("username","password") ;

        TFSTeamProjectCollection tpc =new TFSTeamProjectCollection(URIUtils.newURI("Application_Collection_url")
            , cred);


        WorkItemClient workItemClient = tpc.getWorkItemClient(); 

        Changeset[] chngset=null;

        LabelSpec lable=new LabelSpec("tfs_start_Label", null);

        LabelSpec lable1=new LabelSpec("tfs_end_label", null);

        try {

            chngset = tpc.getVersionControlClient().queryHistory("$project_directory", LatestVersionSpec.INSTANCE, 0, 
                RecursionType.FULL, null,new LabelVersionSpec(lable1), new LabelVersionSpec(lable), Integer.MAX_VALUE, true, true, false, true);

        } catch (ServerPathFormatException e) {

            // TODO Auto-generated catch block

            e.printStackTrace();
        }

        for(Changeset ch : chngset)
        {
            System.out.println("Change Set ID : "+ ch.getChangesetID());

            System.out.println("Owner : "+ ch.getOwner());


            Change changes[]=ch.getChanges();

            System.out.println("Date : "+ new     Date(ch.getDate().getTimeInMillis()));


            for(Change chang:changes)
            {
                System.out.println(chang.getItem().getServerItem());;

                //System.out.println("Owner : "+         chang.getItem().getItemType().toString());

            }
         }  



   }

}