Has anyone has ever seen an implementation of java.nio.ByteBuffer that will grow dynamically if a putX() call overruns the capacity?
The reason I want to do it this way
A Vector allows for continuous growth
Vector bFOO = new Vector(); bFOO.add((byte) 0x00);`
Vector bFOO = new Vector();