I an having the string of array,i need to convert to bytes,So how can i do it?
sample is
String test[] = {"Hello","Hello1"};
I need to convert them to bytes in one place and get them back in other place as string. I need to pass in as bytes,I am having the string array,So is this way?or any other alternate mean?
String[]and you want a singlebyte[]containing a concatenation of all bytes from allStringinstances in the array?