java.lang.String.getBytes()方法實例
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