在 java 中将字节转换为字符串


使用 String(byte[]) 构造函数将字节数组转换为字符串。

示例

public class Tester {
   public static void main(String[] args) {
      String test = "I love learning Java";
      byte[] bytes = test.getBytes();
      String converted = new String(bytes);
      System.out.println(converted);
   }
}

输出

I love learning Java

更新于: 24-Feb-2020

537 次浏览

开启您的 职业生涯

完成课程获得认证

开始
广告