1 /* 2 * 運行可執行文件:.exe 3 * 當要執行一個本地機器上的可執行文件時, 4 * 可使用java.lang包中的Runtime類,首先使用Runtime類,首先 5 * 使用Runtime類聲明一個對象 6 *{ 7 * Runtime sc =Runtime.getRuntime(); 8 * sc能夠調用exec(String command) 方法打開本地湖區上的可執行文件或執行一個操做。 9 * } 10 */ 11 12 13 /* 14 * 不妨舉列: 15 * 運用RUntime調用對象打開Windows平臺上的記事本程序和瀏覽器。 16 */ 17 package DEMO; 18 19 import java.io.File; 20 21 public class test 22 { 23 public static void main(String args []) 24 { 25 try{ 26 Runtime mt =Runtime.getRuntime(); 27 //找到相對應的絕對路徑。啓動記事本文件 28 File myfile =new File("c:\\Windows","Notepad.exe"); 29 mt.exec(myfile.getAbsolutePath()); 30 //建立新的文件路徑,啓動ie瀏覽器 31 myfile = new File("c:\\program Files\\Internet Explorer","IEXPLORE.www.sohu.com"); 32 mt.exec(myfile.getAbsolutePath()); 33 } 34 catch(Exception e) 35 { 36 System.out.println(e); 37 } 38 } 39 }