Flash object 转化为 AMF3

   public function appInit():void
   {

    import flash.utils.ByteArray;
   
    //writing to ByteArray
    var byteObj:ByteArray = new ByteArray();
    //write an Array to ByteArray as AMF3
    byteObj.writeObject( new Array( "Hello", 2, 3, 4, 5 ) );
    trace( byteObj.length )
    //write a String to ByteArray as AMF3
    byteObj.writeObject( "Hello Write Byte World" );
   
    // reading ByteArray 
    byteObj.position = 0
    //read an Array from ByteArray AMF3
    trace( byteObj.readObject() );
    //read a String from ByteArray AMF3
    trace( byteObj.readObject() );
  
   }

你可能感兴趣的:(Flash object 转化为 AMF3)