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
|
|
|
|
|
|
|
well, you can copy bytes from one BA to another.
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. |
||
|
|