Como transformar um string lido em bytes?

Gente por favor … nao estou conseguindo transformar uma string que estou lendo em bytes . Estou usando o metodo getbytes q retorna um vetor de bytes[] mas nao estou conseguindo mostra-lo . alguem pode me mandar um exemplo please ??? :roll:

Irmao, eu tenho um q conta caracteres, tp, mas da pra vc pegar ele e da uma auterada no font q ele mostra sim!!

C vc quize manda um mail pra mim q eu te mando o q tem la em ksa, ai vc so faz umas auteracoes

rafaelcassolato@yahoo.com.br

Espero pder ajudar!!

eu mostro ja como que faz…
eu acho que é assim

BufferedReader in = new BufferedReader(new InputStreamReader(System.in));

String frase = in.readLine();
byte[] byteArray = frase.getBytes();
System.out.println("A frase digitada corresponde aos seguintes bytes:\n");
for(int i = 0; i < byteArray.length; i++)
  System.out.print(byteArray[i]+" ");