Java程序在JNI方法调用后终止

时间:2014-05-25 00:54:21

标签: java c linux java-native-interface execv

我正在使用JNI来调用本机C方法,但是我的java程序在第一次方法调用之后终止(退出代码0)并且没有到达代码的其余部分。

这是我的来源:

Exec.java:

package libs;

public class Exec {

    static {
        System.load(System.getProperty("user.dir")+"/bin/"+"libexec.so");
    }

    public static native int execv(String pExecPath, String[] pArgs);
}

Exec.c:

#include <jni.h>
#include <unistd.h>
#include <stdio.h>
#include <errno.h>


JNIEXPORT jint JNICALL
Java_libs_Exec_execv(JNIEnv * env, jclass clazz, jstring pExecPath, jobjectArray array) {
const char* execPath = (*env)->GetStringUTFChars(env, pExecPath, NULL); 
(*env)->ReleaseStringUTFChars(env, pExecPath, NULL);

printf("Execution path: %s\n", execPath);

int stringCount = (int) (*env)->GetArrayLength(env, array);
char * args[stringCount+1];
args[stringCount] = NULL;

for (int i=0; i<stringCount; i++) {
    jstring string = (jstring) (*env)->GetObjectArrayElement(env, array, i);
    char * arg = (*env)->GetStringUTFChars(env, string, 0);

    printf("Argument %i:\t%s\n", (i+1), arg);

    args[i] = arg;

    (*env)->ReleaseStringUTFChars(env, string, 0);
}



int result = execv(execPath, args);

printf("Exit code: %i\n", result);
perror(NULL);

return result;
}

TestExec.java:

package test;

import libs.Exec;


public class TestExec extends Exec {

    public static void main(String[] args) {

        execv("/bin/ps", new String[]{"ps", "ax"});
        execv("/bin/ls", new String[]{"ls", "-la", "/home"});
}
}

控制台输出:

PID TTY      STAT   TIME COMMAND
1 ?        Ss     0:00 /sbin/init
[...]
5532 ?        R      0:00 ps ax

我也错过了我的c-method控制台输出,它看起来像这样:

Execution path: /bin/ps
Argument 1: ax
Exit code: 0

我希望我提供足够的信息以获得合格的帮助。

1 个答案:

答案 0 :(得分:1)

当然它会终止。你正在调用execv()。您正在使用&#39; ps&#39;替换JVM。程序,退出,所以你已经完成了。

当您仍然持有指向字符的指针时,您无法调用ReleaseStringUTFChars()。

除非出现错误,否则在调用&#39; execv()&#39;后,您无法看到流程的任何输出。

你确定要这样做吗?