Android NDK编程实现终端功能(调用system函数)

原文地址::http://leo108.com/pid-597.asp

 

 

本程序能够实现在android中利用system函数执行命令,并将执行结果输出到指定的文件中。
核心代码:
hello-jni.c
复制代码
  1. #include
  2. #include
  3. JNIEXPORT jstring Java_com_example_hellojni_HelloJni_system(JNIEnv* env,jobject thiz, jstring str , jstring path)
  4. {
  5. const jbyte* p1 = (*env)->GetStringUTFChars(env , str, NULL);
  6. const jbyte* p2 = (*env)->GetStringUTFChars(env , path, NULL);
  7. char* str2=(char *)p1;
  8. char* path2=(char *)p2;
  9. strcat(str2," > ");
  10. strcat(str2,path2);
  11. system(str2);
  12. return(*env)->NewStringUTF(env,str2);
  13. }
HelloJni.java
复制代码
  1. package com.example.hellojni;
  2. import android.app.Activity;
  3. import android.widget.TextView;
  4. import android.os.Bundle;
  5. public class HelloJni extends Activity
  6. {
  7. /** Called when the activity is first created. */
  8. @Override
  9. public void onCreate(Bundle savedInstanceState)
  10. {
  11. super.onCreate(savedInstanceState);
  12. TextView tv = new TextView(this);
  13. tv.setText(system("ls","\"/mnt/sdcard/hello.txt\"") );//这里的第一个参数是要执行的命令,第二个参数是要输出的文件路径
  14. setContentView(tv);
  15. }
  16. public native String system(String str ,String path);
  17. static {
  18. System.loadLibrary("hello-jni");
  19. }
  20. }

你可能感兴趣的:(Android/Java)