gpt4 book ai didi

java - 将 BytesMessage 转换为字符串?

转载 作者:行者123 更新时间:2023-11-29 05:58:44 25 4
gpt4 key购买 nike

ByteMessage 转换为 String 的最佳方法是什么?我有以下代码,我们有更干净的方法吗?

BytesMessage byteMessage; // set byteMessage

byte[] byteArr = new byte[(int)byteMessage.getBodyLength()];

for (int i = 0; i < (int) byteMessage.getBodyLength(); i++) {
byteArr[i] = byteMessage.readByte();
}
String msg = new String(byteArr);

最佳答案

BytesMessage specification有一个可能有用的方法 readUTF()。只需用对此方法的调用替换从 BytesMessage 到 String 定义的所有行。

关于java - 将 BytesMessage 转换为字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11002772/

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