溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

java打開exe文件的方法

發(fā)布時(shí)間:2020-06-21 22:40:37 來源:億速云 閱讀:444 作者:鴿子 欄目:編程語言

知識(shí)補(bǔ)充:

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)注億速云其它相關(guān)文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI