一个典型的http请求就是这样的
GET /servlet/default.jsp HTTP/1.1
Accept: text/plain; text/html 
Accept-Language: en-gb 
Connection: Keep-Alive 
Host: localhost 
Referer: http://localhost/ch8/SendDetails.htm 
User-Agent: Mozilla/4.0 (compatible; MSIE 4.01; Windows 98) 
Content-Length: 33 
Content-Type: application/x-www-form-urlencoded 
Accept-Encoding: gzip, deflate userName=JavaJava&userID=javaID
最后一行就是请求的参数
你要做的就是在接受端读取所有字符串
然后解析出最后的请求信息,并作出相应处理