Here is my C method:
unsigned char *pixel = GetTheCamPixel();
//Do something to convert it to string
//Send this string to a java client
After my Java client received the string, I would like to convert it back to a Java unsigned char
array:
String sReceive = this.receiveFromC();
//Do something to make a unsigned char array
How can I do this?