On Wed, Dec 21, 2005 at 05:46:15AM -0800, qiang zhou wrote:
> But request onle have getInputStream() method. If you want output request
> body, then
>
> InputStream in = request.getInputStream();
> byte[] bytes = new byte[1024];
> while(in.read(bytes)!=-1) {
> //output content.
> }
>
>
> ----- Original Message ----
> From: Xiaobo Yang <[EMAIL PROTECTED]>
> To: [email protected]
> Sent: 2005???12???20??? 7:47:28
> Subject: [HttpClient] How to output the http request body?
>
>
> Hi,
>
> I managed to output the http request head by adding a println statement in
> HttpConnection.java (write method). When I tried to output the http request
> body, I found it to be a OutputStream object. Could anybody tell me how to
> print out the http request body? Also I wonder how to output the http
> response for debugging purpose. Thanks in advanced.
>
> Regards,
> Xiaobo Yang
>
Is there any particular reason why you do not want to be using the wire
logging?
http://jakarta.apache.org/commons/httpclient/logging.html
Oleg
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]