Java 程序如何将字符串转换为字节数组


这是我们的字符串。

String str = "Asia is a continent!";

现在让我们使用字节数组和 getBytes() 方法达成我们的目标。

byte[] byteVal = str.getBytes();

现在,如果我们获取数组的长度,它将返回如下所示的完整示例中的长度 −

示例

 真实演示

public class Demo {
   public static void main(String args[]) {
      String str = "Asia is a continent!";
      System.out.println(str);
      // converted to byte array
      byte[] byteVal = str.getBytes();
      // getting the length
      System.out.println(byteVal.length);
   }
}

输出

Asia is a continent!
20

更新日期: 2020-06-26

347 次浏览

开启你的 职业生涯

通过完成课程取得认证

开始
广告