Wifi上传图片那里用postman发送post请求会一直挂起,直到取消请求时才会上传成功,请问是什么原因?
while ((nReaded = nis.read(buffer)) > 0 && nLeftLength > 0) {
fos.write(buffer, 0, nReaded);
nLeftLength -= nReaded;
}
fos.close();调试后发现代码会一直在while循环中,直到点击取消请求才会运行到fos.close()这里,请问是什么原因,谢谢!