现在的位置: 首页 > 综合 > 正文

java调用操作系统程序

2013年09月13日 ⁄ 综合 ⁄ 共 258字 ⁄ 字号 评论关闭
 

package com.jzm.memory;

public class Process { 
  public static void main(String[] args) throws Exception{
         Runtime runtime = Runtime.getRuntime();
         java.lang.Process process  = null;      
         process = runtime.exec("notepad.exe");               
 }
}

 

如上,即可打开文本文档编辑器

抱歉!评论已关闭.