Tagged Questions
The p4java tag has no wiki summary.
2
votes
1answer
205 views
sync via p4java api
What fields should be set in the FileSpec object passed into IClient.sync in the perforce java API?
I've set:
The pathname passed to the constructor to the abs path/... of the local workspace
...
1
vote
1answer
50 views
Using P4JAVA with JDK6 on Unix: Client.sync() ignores the execute bit
Using p4java-2011.1.297684 with Java 6 on Solaris
Running p4 sync -f on the given file will sync the file w/ the execute bit set correctly.
Calling client.sync(List, true, false, false, false) does ...
0
votes
1answer
48 views
How to find unresolved files using the Perforce p4java library?
Using the p4java library from Perforce (http://kb.perforce.com/article/1086/p4java-api), I'm trying to find out what files in a changelist are unresolved and need to be resolved before I can submit ...
0
votes
1answer
241 views
Perforce P4J getting change lists for a directory
I am trying to get the changelists on a directory using P4J. Here is the snippet I used,
P4JServer server = //get a valid server using username/pwd
List<P4JFileSpec> fileSpec = ...