java.lang.String.getBytes() 方法將此String解碼使用平台的預設字元集的位元組序列,並將結果儲存到一個新的位元組陣列。
以下是java.lang.String.getBytes()方法的宣告
public byte[] getBytes()
NA
此方法返回得到的位元組陣列。
NA
下面的例子顯示java.lang.String.getBytes()方法的使用。
package com.yiibai; import java.lang.*; public class StringDemo { public static void main(String[] args) { String str1 = "tutorials point"; // copy contents of str1 to a byte array. byte[] val = str1.getBytes(); // create string str1 using the contents of the byte array String str2 = new String(val); // prints the byte array. System.out.println("String '" + str2 + "' is equal to str1"); } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
String 'tutorials point' is equal to str1