Dear Wiki user, You have subscribed to a wiki page or wiki category on "Httpcomponents Wiki" for change notification.
The following page has been changed by QuintinBeukes: http://wiki.apache.org/HttpComponents/GeneralHttpCoreIntroduction The comment on the change is: Fixed trivial problem in sample code. ------------------------------------------------------------------------------ int read = 0; while ((read = inputStream.read(buf, 0, BUFFER_SIZE)) > -1) { - System.out.println(new String(buf, 0, read)); + System.out.print(new String(buf, 0, read)); } } catch (MalformedURLException e) @@ -813, +813 @@ int read = 0; while ((read = inputStream.read(buf, 0, BUFFER_SIZE)) > -1) { - System.out.println(new String(buf, 0, read)); + System.out.print(new String(buf, 0, read)); } } catch (MalformedURLException e) --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
