Hi,
I want to update all the files from CVS through Java program. I have written the following code and it doesnt work. Could anyone help in this regard?
private void login(String userName, String password){
Runtime rt = Runtime.getRuntime();
try {
rt.exec("cmd /K cvs -d
server:senthilkumar.v@cvs.india.tavant.com:2401/cvs/wolf checkout wolf/build/");
} catch (IOException e) {
e.printStackTrace(); //To change body of catch statement use Options | File Templates.
}
}
Thanks,
Senthilkumar V