知識(shí)補(bǔ)充:
10年積累的網(wǎng)站制作、做網(wǎng)站經(jīng)驗(yàn),可以快速應(yīng)對客戶對網(wǎng)站的新想法和需求。提供各種問題對應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認(rèn)識(shí)你,你也不認(rèn)識(shí)我。但先網(wǎng)站設(shè)計(jì)后付款的網(wǎng)站建設(shè)流程,更有沛縣免費(fèi)網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。
Runtime
:運(yùn)行時(shí),是一個(gè)封裝了JVM進(jìn)程的類。每一個(gè)JAVA程序?qū)嶋H上都是啟動(dòng)了一個(gè)JVM進(jìn)程,那么每一個(gè)進(jìn)程都是對應(yīng)這一個(gè)Runtime實(shí)例,其實(shí)例是由JVM為其初始化的。
Runtime類的常用方法
public static Runtime getRuntime():
普通方法 用于取得Runtime類的實(shí)例
public long freeMemory():
普通方法 用于返回Java虛擬機(jī)中的空閑內(nèi)存
public long maxMemory():
返回JVM的最大內(nèi)存量
public void gc():
運(yùn)行垃圾回收器、釋放空間
public Process exec(String command) throws IOException
執(zhí)行本機(jī)命令
一旦取得實(shí)例后,以上的方法就可以進(jìn)行操作了。
示例如下:
public static void main(final String[] args) throws IOException { openWindowsExe(); openExe(); openFile(); } // 用 Java 調(diào)用windows系統(tǒng)的exe文件,比如notepad,calc之類 public static void openWindowsExe() { final Runtime runtime = Runtime.getRuntime(); Process process = null; try { final String command = "notepad";// 記事本 process = runtime.exec(command); } catch (final Exception e) { System.out.println("Error win exec!"); } } // 調(diào)用其他的可執(zhí)行文件,例如:自己制作的exe,或是 下載 安裝的軟件. public static void openExe() { final Runtime runtime = Runtime.getRuntime(); Process process = null; try { process = runtime.exec("C:\\Program Files\\Notepad++\\notepad++.exe"); } catch (final Exception e) { System.out.println("Error exec!"); } } // 打開其他任意格式的文件,比如txt,word等 public static void openFile() { final Runtime runtime = Runtime.getRuntime(); Process process = null;// final String cmd = "rundll32 url.dll FileProtocolHandler file://F:\\ECT項(xiàng)目資料\\建立EMF工程.txt"; try { process = runtime.exec(cmd); } catch (final Exception e) { System.out.println("Error exec!"); } }
以上就是java如何打開指定exe文件的詳細(xì)內(nèi)容,更多請關(guān)注創(chuàng)新互聯(lián)其它相關(guān)文章!