Dana
3 天以前 430512c7927776edcee161ee600f1ee5bf34e566
1
2
3
4
5
6
7
8
9
10
11
12
#include <jni.h>
#include <string>
 
 
 
extern "C"
JNIEXPORT jstring JNICALL
Java_com_anyun_libusbcamera_UsbCamera_stringFromJNI(JNIEnv *env, jobject instance) {
 
    std::string hello = "Hello from C++";
    return env->NewStringUTF(hello.c_str());
}