http接收数据的问题

byte[] sendBytes = null;
  // 设置响应属性
  ServletInputStream is = request.getInputStream();
   // 监听到的字符串长度
  int len = request.getContentLength();
  int i;
  int index = 0;
  byte[] httpBytes = new byte[len];
  // i=is.read(httpBytes);
  while ((i = is.read()) != -1) {
   httpBytes[index] = (byte) i;
   index++;
  }



图片中为手机终端发送的http数据,其中Data表名有值,作为接收方也能接收到post方式发送的值,

代码中 request.getContentLength()可以获取到http数据的长度为51,但是is.read()得到的值一直是-1,说明获取到的值到末尾了(也就是没有值了),是不是跟ContentType有关系,发送的ContentType是mutilpart/form-data类型的。

请问为什么inputstream.read()到的值是空的呢?

注:发送放的代码是用C写的。

你可能感兴趣的:(http)