java.lang.String.getBytes(Charset charset) 方法將此String解碼使用給定的字元集的位元組序列,並將結果儲存到一個新的位元組陣列。
以下是java.lang.String.getBytes()方法的宣告
public byte[] getBytes(Charset charset)
charset -- 這是字元集被用於對字串進行編碼。
此方法返回得到的位元組陣列。
NA
下面的例子顯示java.lang.String.getBytes()方法的使用。
package com.yiibai; import java.lang.*; public class StringDemo { public static void main(String[] args) { try { String str1 = "admin"; System.out.println("string1 = " + str1); // copy the contents of the String to a byte array byte[] arr = str1.getBytes("ASCII"); String str2 = new String(arr); // print the contents of the byte array System.out.println("new string = " + str2); } catch(Exception e) { System.out.print(e.toString()); } } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
string1 = admin new string = admin