I want to get the internal byte array from ByteArrayInputStream. I don't want to extends that class or write it into another byte array. Is there a utility class that help me do that?
Thanks,
|
I want to get the internal byte array from ByteArrayInputStream. I don't want to extends that class or write it into another byte array. Is there a utility class that help me do that? Thanks, |
|||
|
|
|
Extend However, you may find the decorator pattern more helpful. |
|||
|
|
|
No. Extending the class is the only way (well, that and using reflection to bypass the field visibility, which absolutely NOT recommended). |
|||||||||
|
|
You can not get access to the same byte array, but you can easily copy the contents of the stream:
|
|||||||||
|
|
The internal field is protected, so extending would be easy. If you really don't want to, reflection may be another way. This is not a great solution since it relies on internal workings of ByteArrayInputStream (such as knowing the field is called
|
|||
|
|
|
With the library Apache COmmons IO (http://commons.apache.org/io/) you can use the Edit : ok, I didn't understood the question... no copy... Maybe something like :
will allow you to keep a reference to the buffer used by the input stream |
||||
|
|
|
No, access to the internal array is not provided except through the toByteArray() method, which makes a copy. |
|||||||||||||
|