gpt4 book ai didi

Android 套接字不能很好地播放

转载 作者:可可西里 更新时间:2023-11-01 02:47:42 25 4
gpt4 key购买 nike

作为标题。

代码如下:

InputStream is = tcp.getInputStream();
int bytesRead = 0;
do{
byte[] byteIn = new byte[16* 1024];
bytesRead = is.read(byteIn, 0, 16*1024);
pStore.storeData(byteIn, 1024);
processMessage(pStore.readAll());
pStore.clear();
}while(bytesRead>0);

我遇到的问题是它永远不会到达 while 循环的末尾。任何建议将不胜感激。

谢谢:)

最佳答案

InputStream.read() 的 Javadoc 说:

This method blocks until input data is available

这就是您所看到的。

您可以使用InputStream.available() 测试是否有任何数据需要先读取。

关于Android 套接字不能很好地播放,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5107324/

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