You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Jukka Zitting (JIRA)" <ji...@apache.org> on 2008/01/04 11:30:33 UTC

[jira] Updated: (IO-152) Add ByteArrayOutputStream.readFrom(InputStream)

     [ https://issues.apache.org/jira/browse/IO-152?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jukka Zitting updated IO-152:
-----------------------------

    Attachment: IO-152.patch

Attached a patch with the proposed readFrom(InputStream) method and a simple test case.

I'll wait a few days for any objections before committing this.

> Add ByteArrayOutputStream.readFrom(InputStream)
> -----------------------------------------------
>
>                 Key: IO-152
>                 URL: https://issues.apache.org/jira/browse/IO-152
>             Project: Commons IO
>          Issue Type: New Feature
>          Components: Streams/Writers
>            Reporter: Jukka Zitting
>            Priority: Minor
>             Fix For: 1.4
>
>         Attachments: IO-152.patch
>
>
> It would be useful to have a ByteArrayOutputStream.readFrom(InputStream) method to mirror the existing writeTo(OutputStream) method. A call like baos.readFrom(in) would be semantically the same as IOUtils.copy(in, baos), but would avoid an extra in-memory copy of the stream contents, as it could read bytes from the input stream directly into the internal ByteArrayOutputStream buffers.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.