要设定输出字节的格式,一般String会根据平台默认的字符编码来处理
bTemp = str.getBytes("ISO-8859-1")US-ASCII Seven-bit ASCII, a.k.a. ISO646-US, a.k.a. the Basic Latin block of the Unicode character set 
ISO-8859-1   ISO Latin Alphabet No. 1, a.k.a. ISO-LATIN-1 
UTF-8 Eight-bit UCS Transformation Format 
UTF-16BE Sixteen-bit UCS Transformation Format, big-endian byte order 
UTF-16LE Sixteen-bit UCS Transformation Format, little-endian byte order 
UTF-16 Sixteen-bit UCS Transformation Format, byte order identified by an optional byte-order  也可以通过Charset来设定你输入字符串的编码格式,如:
Charset charset = Charset.forName("ISO-8859-1");String str = new String(byte[], charset);