gpt4 book ai didi

Java/Android- 将 InputStream 转换为字符串

转载 作者:行者123 更新时间:2023-11-29 23:54:20 25 4
gpt4 key购买 nike

<分区>

我正在通过蓝牙从设备读取源源不断的数据流。我想知道如何将这些数据转换为字符串并打印出来?缓冲区将包含一个 ASCII 字符串,但当我运行它时它会打印出整数,我希望能够看到该字符串。

 while (true) {
try {
//read the data from socket stream
if(mmInStream != null) {
int input = mmInStream.read(buffer);

System.out.println(input);
}
// Send the obtained bytes to the UI Activity
} catch (IOException e) {
//an exception here marks connection loss
//send message to UI Activity
break;
}
}

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