So as the title says this the error I get while running this code, which is written in C++/CLI:
String^ somethig(const char* string)
{
// Some code
}
JNIEXPORT jstring JNICALL Java_Class_nativeClass
(JNIEnv * env, jobject jobj,jstring string)
{
jboolean isCopyString;
const char *c_string = env->GetStringUTFChars(string, &isCopyString);
jstring example = somethig(c_string);
return example;
}
I get the error on line:
jstring example = something(c_string);
Specifically at example. Now I know what the error means, I just don't know how to get jstring to accept the function something. Is there a conversion method that works with functions to make it an acceptable type for jstring?
Thanks in advance.
The method
env->NewString()
will take a Unicode buffer and return a jstring. You'll need to convert fromString^
towchar_t*
, and then pass that toenv->NewString()
. (Orenv->NewStringUTF()
to convert a UTF8-encodedchar*
, which will work for any ASCIIchar*
as well.)However, if you need to create a jstring, then can you modify
somethig
to return the jstring directly, or modify the inputchar*
? Without seeing howsomethig
is implemented, taking a trip throughString^
seems unnecessary.Edit
Here's the conversion code you would use. Again, if you can modify
something
, there are better solutions than this.You need to convert the
String^
to awchar_t
usingStringToHGlobalUni
, then you can convert that to ajstring
usingNewString
. Don't forget, you must free thewchar_t*
usingFreeHGlobal
.Disclaimer: I'm not a JNI expert, and I didn't check my syntax in a compiler.