Dana
2025-11-30 2351ee9d82136621690291f310fa6c4980d23c49
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());
}