vote up -4 vote down star

byte1:ByteArray = new ByteArray(); byte1.writeUTFBytes("MS");

byte2:ByteArray = new ByteArray(); byte2.writeUTFBytes("AIF");

output will be MSAIF how can i add byte1 to byte2 sothat output will be MSAIF

flag

0% accept rate

1 Answer

vote up 0 vote down

well, you can copy bytes from one BA to another.

byte1.writeBytes(byte2);

if you trace this you'll get your MSAIF. if you want to copy the value from byte1 to the beggining of byte2, then you need another temp bytearray variable to hold the value of byte2 untill you clear() it, and copy the byte1 value.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.