Can I check out the directory structure only in cvsclient in Java?

I'm using org NetBeans lib cvsclient Jar executes various CVS commands in Java classes that communicate with CVs I can do a CVS checkout command, add, submit, etc

However, I need to find out which command is equivalent to the CVS LS - R command

This is the code I wrote that allows CVS checking:

CheckoutCommand command = new CheckoutCommand();
command.setBuilder(null);
command.setRecursive(true); 
command.setModule(module);
if(revision!=null)
{
   command.setCheckoutByRevision(revision);
}
command.setPruneDirectories(true);
command.setUseHeadIfNotFound(true); 

executeCommand(command,AnonymizerConstants.DEFAULT_LOCAL_PATH);

I need to do something similar for CVS LS - R or CVs RLS

Solution

There is no such command in this lib, but the good news is that you can write this command You basically need to be like org netbeans. lib. cvsclient. command. log. Something like logcommand The main method you need is #execute This can be used as a starting point:

List<Request> requests = new LinkedList<Request>();
requests.add(1,new ArgumentRequest("-R")); 
requests.add(new CommandRequest("ls\n"));
client.processRequests(requests);
The content of this article comes from the network collection of netizens. It is used as a learning reference. The copyright belongs to the original author.
THE END
分享
二维码
< <上一篇
下一篇>>