Siva Anandhi Rajendran

Greenhorn
+ Follow
since Apr 08, 2007
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Siva Anandhi Rajendran

Runtime.getRuntime().exec(String) returns an object of Process.
Process has a method waitFor() which allows the current thread to wait until the process represented by it's object is completed.
Despite of using thread.sleep() you can use waitFor() as,
Process proc = Runtime.getRuntime().exec("someFile.bat");
proc.waitFor();
16 years ago
I'm interested in joining the Study group for SCJP 5.0.
Let's colaborate and do it great.