Runtime的用法

public class RuntimeTest {
public static void main(String[] args)
{
  Runtime run    =Runtime.getRuntime();
  
  try
  {
      run.exec("mstsc.exe");
  }
  catch(Exception e)
  {
      e.printStackTrace();
  }
}
}

 

posted @ 2013-08-31 16:38  fang_beny  阅读(136)  评论(0编辑  收藏  举报