Hello All
I am Posting after a very Long time because of Having a problem :)
The Problem is I want to Convert a String on UNKNOWN size to character array.
Explanation:
I have a file in JAVA that sends some string through JNI, I collect that String in C.
const char *str = (*env)->GetStringUTFChars(env, data, 0);
(Above: the Portion of Code where I do Collect String from JAVA)
The str is a Constant String, I want to Convert it to character array.
Thanx in Advance