Use URLUtil : URLUtil « Development « Flex






Use URLUtil

           
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="parseURL()">
    <mx:Script>
        
            import mx.utils.ObjectUtil;
            import mx.managers.IBrowserManager;
            import mx.managers.BrowserManager;
            import mx.utils.URLUtil;

            private function parseURL() : void
            {
                var bm:IBrowserManager = BrowserManager.getInstance();
                bm.init();

                output.text += "URL Port:" + URLUtil.getPort( bm.url ) + "\n";
                output.text += "URL Protocol:" + URLUtil.getProtocol( bm.url ) + "\n";
                output.text += "URL Server:" + URLUtil.getServerName( bm.url ) + "\n";
                output.text += "URL Server with Port:" + URLUtil.getServerNameWithPort( bm.url );
            }

      
    </mx:Script>

    <mx:TextArea id="output" left="10" top="10" bottom="10" right="10"/>

</mx:Application>

   
    
    
    
    
    
    
    
    
    
    
  








Related examples in the same category

1.Serialize Typed ObjectsSerialize Typed Objects