Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have passed a url String from java to C code as jstring data type. And my library method needs a char * as url.

How can I convert jstring in char * ?

p.s. Is there any advantage of using jcharArray in C? (i.e. Passing char [] instead of string in native method)

Thanks in advance for your help.

share|improve this question

1 Answer

up vote 67 down vote accepted

Here's a a couple of useful link that I found when I started with JNI

http://en.wikipedia.org/wiki/Java_Native_Interface
http://download.oracle.com/javase/1.5.0/docs/guide/jni/spec/functions.html

concerning your problem you can use this

JNIEXPORT void JNICALL Java_ClassName_MethodName(JNIEnv *env, jobject obj, jstring javaString)   
{
   const char *nativeString = (*env)->GetStringUTFChars(env, javaString, 0);

   // use your string

   (*env)->ReleaseStringUTFChars(env, javaString, nativeString);
}
share|improve this answer
is it necessary to keep nativeString constant? – Prasham Nov 15 '10 at 7:07
2  
if you check the second link, the prototype of the function GetStringUTFChars is: const jbyte* GetStringUTFChars(JNIEnv *env, jstring string, jboolean *isCopy); so you don't really have a choise – Jason Rogers Nov 15 '10 at 7:26
Thanks it's worked. I accepted it as answer . And wanted to give you +2 votes for that. But It seems i have made a mistake by twice clicking up arrow. Thanks a lot anyway. – Prasham Nov 15 '10 at 9:12
no problems, I'm getting to the end of my project with JNI but I know how much I struggled to start with – Jason Rogers Nov 15 '10 at 9:22
I think it's worth noting that the technique outlined here (and on the Wikipedia page) uses modified UTF-8 encoding, which may not work in all situations. See developer.android.com/guide/practices/… – cqcallaw Oct 1 '12 at 1:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.