1

我在网上看到过使用 Perforce 的 p4java api 将客户端工作区与最新文件同步的示例。例如:

public List<IFileSpec> sync(List<IFileSpec> fileSpecs,
                        boolean forceUpdate,
                        boolean noUpdate,
                        boolean clientBypass,
                        boolean serverBypass)

但是如何指定它以同步到特定标签?例如,命令行中的等效项:

p4 sync @labelname

是否可能通过使用 SyncOptions 的替代方法?

public List<IFileSpec> sync(List<IFileSpec> fileSpecs,
                        SyncOptions syncOpts)

我查看了 SyncOptions,但没有看到任何在其中指定标签的方法。

4

2 回答 2

1

FileSpec 是 IFileSpec 的一个实现,它有一个label字段:

protected  String   label

和以下方法:

 void   setLabel(String label)
      Set the label associated with this file spec.

取自以下链接:

https://www.perforce.com/perforce/r15.1/manuals/p4java-javadoc/com/perforce/p4java/impl/generic/core/file/FileSpec.html

于 2015-12-04T08:40:11.237 回答
1

在上面建议查看 fileSpecs 参数后,我发现这种方法对我有用:

List<IFileSpec> fileSpecsSet = 
    FileSpecBuilder.makeFileSpecList("//path/to/project/...@labelname");
client.sync(fileSpecsSet, true, false, false, false);
于 2015-12-06T07:00:03.623 回答