gpt4 book ai didi

java - 如何将字符串转换为具有相同内容的byte[]

转载 作者:行者123 更新时间:2023-12-01 17:16:04 26 4
gpt4 key购买 nike

我想将字符串转换为具有相同内容的字节[]。例子我有:

String str = "abc";
byte[] bytes;
//I want to convert "str" to "bytes" that they have same content:
(code here)
//after, print bytes -> "abc".

最佳答案

只要付出一点努力,你就可以达到这个目标。

所以我们要做的是使用getBytes方法

byte[] convertToBytes= stuff.getBytes("UTF-8");
String newString = new String(convertToBytes, "UTF-8");

source

Converting a set of strings to a byte[] array

Also study up on the String API page

关于java - 如何将字符串转换为具有相同内容的byte[],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22076200/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com