yorgan
Opa, segue um exemplo:
public static String byteToString(byte[] bytes) {
try {
return new String(bytes, "UTF-8");
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
return null;
}
public static byte[] stringToByte(String texto) {
try {
return texto.getBytes("UTF-8");
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
return null;
}
ViniGodoy
blackfalcon
Bem legal sua explicação ViniGodoy, e yorgan, obrigado pelo exemplo. Me clariou bastante… 
Abraços