5253545556575859606162
buf.seekEnd(); buf.write( "foo".getBytes() ); assertEquals( "elzotfoo" , buf.asString() ); buf.seekStart(); buf.write( "bar".getBytes() ); assertEquals( "barotfoo" , buf.asString() ); }