View Single Post
  #2 (permalink)  
Old 08-02-2007, 05:43 PM
henry_78 henry_78 is offline
Member
 
Join Date: Aug 2007
Posts: 47
henry_78 is on a distinguished road
Hi,
U can try to lunch a dos command from a java program.
try this:

Runtime rt = Runtime.getRuntime();
Process p = rt.exec("cmd /c cls");

Bye
Reply With Quote