读取request中post过来的内容

java 代码
  1. public String getPostContent(HttpServletRequest request){   
  2.     ServletInputStream is = request.getInputStream();   
  3.     ByteArrayOutputStream baos = null;   
  4.     baos = new ByteArrayOutputStream();   
  5.     int iLength = 1024;   
  6.     int bytesRead = 0;   
  7.     byte[] buff = new byte[iLength];   
  8.     while (true)   
  9.     {   
  10.         bytesRead = is.read(buff);   
  11.         if (bytesRead < 1)   
  12.         break;   
  13.         baos.write(buff, 0, bytesRead);   
  14.     }   
  15.     return new String(baos.toByteArray(),"utf-8");   
  16. }  

你可能感兴趣的:(java)