标签: java android byte
我的输入是“[B @ ec3c95b”
String example =“[B @ ec3c95b”;
我希望它与字节数组类型中的输出“[B @ ec3c95b”相同。
答案 0 :(得分:1)
如果我理解,你想在字节数组中转换一个String。
为此,您可以使用getBytes()函数转换字符串:
getBytes()
String input = "[B@ec3c95b"; byte[] output = input.getBytes();