using (Stream inputStream = request.InputStream)
{
byte[] bytes = new byte[4096];
int iread = 0;
//循环从数据流中获取请求所提交的数据,存入字节数组
while (true)
{
iread = inputStream.Read(bytes, 0, 1024);
if (iread == 0)
break;
}
//将获取的字节数组转换成固定字符集的字符串
string requestParam = encoding.GetString(bytes);
requestParam内容最后为:测容\0\0\0\0\0\0\0\0.....
我抛到界面上显示,就是因为多了后面那些0 使用\r\n都不能换行了
this.txtServerReceiveMsg.AppendText("接受到客户端请求:" +requestParam +"\r\n");
- 4 回答
- 0 关注
- 447 浏览
添加回答
举报
0/150
提交
取消