There is Vector and DataOutputStream. I need to write bytes from Vector (toArray returns Byte[]) to the stream, but it understands byte[] only. How to convert Byte[] to byte[] ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You could use the toPrimitive method in the Apache Commons lang library ArrayUtils class? |
|||
|
|
|
A Vector<Byte> is about as inefficient structure as you could use to store bytes. I would serious consider using something more efficient line ByteArrayOutputStream which has a toByteArray() method. i.e. don't just convert the Vector but remove it from the code. |
|||
|
toLowerCase()on the string"Byte[]". Yeah, I know, by explaining it, I ruined the joke. – Oded♦ Jun 21 '11 at 19:31