I suggest that you download the source for ant and look at the existing clearcase 
tasks as examples. Your code below is missing some things line import statements, 
package definition and methods.
 
-Rob Anderson

-----Original Message-----
From: Tomar Ajay singh (DS/ESQ2) [mailto:[EMAIL PROTECTED]
Sent: Tuesday, February 10, 2004 7:05 AM
To: [EMAIL PROTECTED]
Subject: Java and Clearcase



Hello, 

I would like to invoke cleartool command from my java code. Do you have any example 
how to do that? 

I tried executing the program below but it is giving Null Pointer Exception. 

public class ClearTest extends ClearCase{ 
                
        public static void main(String[] args) 
        { 
                 ClearTest test = new ClearTest(); 
                 test.setClearToolDir("C:\\Program Files\\ClearCase\\bin"); 
                 test.setViewPath("M:\\u_mercury_toj2fe\\foo\\toj2fe\\name.txt"); 
                 System.out.println(test.getViewPath()); 
                
                 Commandline c = new Commandline("cleartool describe name.txt"); 
                test.run(c); 
        
        } 
} 

Please help. 

Regards, 
Ajay 

Reply via email to