前几天有需要在java代码中调用二进制程序,就在网上找了些资料,写点东西记录下。

Android 也是基于linux 的系统,当然也可以运行二进制的可执行文件。只不过Android 限制了直接的方式只能安装运行apk文件。虽然有NDK可以用动态链接库的方式来用C的二进制代码,但毕竟不方便。至少我们可以调用linux的一些基本命令,如ls,rm等。

 

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


这种方法是java语言本身来提供的,在Android里面也可以使用。args是要执行的参数数组。大概用法如下:

 

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(); }

 

以上代码执行了linux的标准命令 ls -l。执行此命令后的标准输出是在brout中。如果出错,像参数错误,命令错误等信息就会放在brerr中。

有需要的话从里面读出来便可。

 

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

 

这个方法是一个老外找到的,原贴在这里:http://gimite.net/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 的源代码中已经提供了类似 terminal 的ap,在

/development/apps/Term/src/com/android/term 中,这个ap就是用android.os.Exec来调用linux的基本命令的。不过这个类只有在Android的内置ap中才可以使用。单独写一个非内置ap的话是无法直接调用android.os.Exec的。间接的方法就是类似上面,用Class.forName("android.os.Exec")来得到这个类,execClass.getMethod("createSubprocess", ... )来得到类里面的方法,这样就可以使用本来不能用的类了。这就是反射?...

 

这个方法看起来要麻烦一些,而且比较歪,我觉得还是用java本身提供的东西比较好,毕竟简单,移植性也好点。

 

至于自己写的二进制执行程序如何放到apk里面如何调用,原帖也说的很清楚,不过要提醒一下,assets文件夹对单个文件大小有限制为1MB. 所以如果有资源文件大于1MB我看只好自己先切割一下了,运行的时候再自己拼起来...

更多相关文章

  1. Android 命名规范 (提高代码可以读性)
  2. Android中Bitmap类getPixel方法获取的像素值为负
  3. Android的开源隐忧:品牌稀释 代码分裂
  4. linux和windows平台下,如何下载android sdk的源代码
  5. Android的View体系(三):View坐标以及方法说明
  6. Android应用程序内部启动Activity过程(startActivity)的源代码分析
  7. [Android] 开心消消乐代码(写的比较简单)
  8. Android控制闪光灯的方法(打开与关闭)
  9. android中setVisibility方法无效的可能原因与解决办法

随机推荐

  1. windows 下 android 使用ant自动打包
  2. Android总结篇系列:Android广播机制----学
  3. Android JNI中记录log
  4. Android:删除预装应用
  5. android 决TextView中MaxLines与ellipsiz
  6. 解决国内android sdk无法更新,google不能
  7. A010-menu资源
  8. android 多语言的实现
  9. 【Android】数据存储之Shared Preference
  10. Android2.2 API 中文文档系列(9) ―― Zoom