一区二区三区日韩精品-日韩经典一区二区三区-五月激情综合丁香婷婷-欧美精品中文字幕专区

分享

在 Android 中調(diào)用二進制可執(zhí)行程序(native executable )

 techres 2011-12-27

在 Android 中調(diào)用二進制可執(zhí)行程序(native executable )

分類: Android 988人閱讀 評論(0) 收藏 舉報

前幾天有需要在java代碼中調(diào)用二進制程序,就在網(wǎng)上找了些資料,寫點東西記錄下。

Android 也是基于linux 的系統(tǒng),當(dāng)然也可以運行二進制的可執(zhí)行文件。只不過Android 限制了直接的方式只能安裝運行apk文件。雖然有NDK可以用動態(tài)鏈接庫的方式來用C的二進制代碼,但畢竟不方便。至少我們可以調(diào)用linux的一些基本命令,如ls,rm等。

 

第一種方法:Runtime.exec(String[] args)


這種方法是java語言本身來提供的,在Android里面也可以使用。args是要執(zhí)行的參數(shù)數(shù)組。大概用法如下:

 

String[] args = new String[2];

args[0] = "ls";

args[1] = "-l";

try { Process process = Runtime.getRuntime().exec(arg);


//get the err line

InputStream stderr = process.getErrorStream(); InputStreamReader isrerr = new InputStreamReader(stderr); BufferedReader brerr = new BufferedReader(isrerr);


//get the output line InputStream outs = process.getInputStream(); InputStreamReader isrout = new InputStreamReader(outs); BufferedReader brout = new BufferedReader(isrout);

String errline = null;

String result = "";

// get the whole error message string while ( (line = brerr.readLine()) != null) { result += line; result += "/n";

}

if( result != "" )

{

// put the result string on the screen

}

 

// get the whole standard output string

while ( (line = brout.readLine()) != null) { result += line; result += "/n"; } if( result != "" ) {

// put the result string on the screen

}

}catch(Throwable t) { t.printStackTrace(); }

 

以上代碼執(zhí)行了linux的標(biāo)準(zhǔn)命令 ls -l。執(zhí)行此命令后的標(biāo)準(zhǔn)輸出是在brout中。如果出錯,像參數(shù)錯誤,命令錯誤等信息就會放在brerr中。

有需要的話從里面讀出來便可。

 

第二種方法:Class.forName("android.os.Exec")

 

這個方法是一個老外找到的,原貼在這里:http:///en/index.php?Run%20native%20executable%20in%20Android%20App

代碼大概是這樣:

 

try {

    	// android.os.Exec is not included in android.jar so we need to use reflection.
    	Class<?> execClass = Class.forName("android.os.Exec");
    	Method createSubprocess = execClass.getMethod("createSubprocess",
            String.class, String.class, String.class, int[].class);
    	Method waitFor = execClass.getMethod("waitFor", int.class);
    
    	// Executes the command.
    	// NOTE: createSubprocess() is asynchronous.
    	int[] pid = new int[1];
    	FileDescriptor fd = (FileDescriptor)createSubprocess.invoke( null, "/system/bin/ls", "/sdcard", null, pid);
    
   	 // Reads stdout.
    	// NOTE: You can write to stdin of the command using new FileOutputStream(fd).
    	FileInputStream in = new FileInputStream(fd);
    	BufferedReader reader = new BufferedReader(new InputStreamReader(in));
    	String output = "";
    	try {
        	String line;
        	while ((line = reader.readLine()) != null) {
            	output += line + "/n";
        }
    	} catch (IOException e) {
        	// It seems IOException is thrown when it reaches EOF.
    	}
    
    	// Waits for the command to finish.
    	waitFor.invoke(null, pid[0]);
    
    	return output;
} catch( ... )
...

這種方法是用了 Android 提供的android.os.Exec類。在 Android 的源代碼中已經(jīng)提供了類似 terminal 的ap,在

/development/apps/Term/src/com/android/term 中,這個ap就是用android.os.Exec來調(diào)用linux的基本命令的。不過這個類只有在Android的內(nèi)置ap中才可以使用。單獨寫一個非內(nèi)置ap的話是無法直接調(diào)用android.os.Exec的。間接的方法就是類似上面,用Class.forName("android.os.Exec")來得到這個類,execClass.getMethod("createSubprocess", ... )來得到類里面的方法,這樣就可以使用本來不能用的類了。這就是反射?...

 

這個方法看起來要麻煩一些,而且比較歪,我覺得還是用java本身提供的東西比較好,畢竟簡單,移植性也好點。

 

至于自己寫的二進制執(zhí)行程序如何放到apk里面如何調(diào)用,原帖也說的很清楚,不過要提醒一下,assets文件夾對單個文件大小有限制為1MB. 所以如果有資源文件大于1MB我看只好自己先切割一下了,運行的時候再自己拼起來...

    本站是提供個人知識管理的網(wǎng)絡(luò)存儲空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點。請注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購買等信息,謹防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點擊一鍵舉報。
    轉(zhuǎn)藏 分享 獻花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多

    中文字幕人妻一区二区免费| 办公室丝袜高跟秘书国产| 亚洲综合色在线视频香蕉视频| 国内欲色一区二区三区| 国产超碰在线观看免费| 欧美一区二区日韩一区二区| 亚洲人午夜精品射精日韩| 69老司机精品视频在线观看| 国产成人午夜在线视频| 午夜国产精品福利在线观看| 91精品国产综合久久精品| 伊人久久青草地综合婷婷| 手机在线不卡国产视频| 99久久精品国产麻豆| 91日韩欧美中文字幕| 日本加勒比在线播放一区| 韩国激情野战视频在线播放| 亚洲精品福利视频在线观看| 亚洲精品福利视频在线观看| 国产精品久久男人的天堂| 俄罗斯胖女人性生活视频| 亚洲av日韩av高潮无打码| 中文字幕亚洲人妻在线视频| 国产国产精品精品在线| 精品少妇人妻av免费看| 国产免费一区二区不卡| 久久99精品日韩人妻| 黄片在线免费看日韩欧美| 免费观看一区二区三区黄片| 日韩欧美国产三级在线观看| 国产午夜在线精品视频| 国产一区日韩二区欧美| 欧美自拍偷自拍亚洲精品| 日本久久精品在线观看| 中文字幕久热精品视频在线 | 国产日韩欧美在线亚洲| 日韩在线一区中文字幕| 国产又粗又猛又爽又黄的文字| 偷拍美女洗澡免费视频| 老熟妇乱视频一区二区| 亚洲欧洲精品一区二区三区|