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.
