小小菜鸟的web菜园子

web开发学习。好记性不如烂笔头。每天进步一点点!

导航

Flex 中取得当前服务IP地址

var uri:URI = new URI(Application.application.url);
trace(uri.authority);//IP address of the server which hosts this flex application
trace(uri.port);
trace(uri.path);
var uri:URI = new URI(Application.application.url);
userService.url = “http://”+uri.authority+”:8080/FileManage/servlet”;
<mx:HTTPService method=”POST”  id=”userService”>
as3corelib里面的类,所以必须要as3corelib这个包,然后
import xx.xx.URI;


其实要获得本机IP地址, 可以通过调用JavaScript脚本, Windows下读Network对象即可!
因为JavaScript是本机执行环境, 所有与本机交互都可以通过JavaScript变通执行!

来自:http://xinsync.xju.edu.cn/index.php/archives/4134

posted on 2009-02-12 11:51  『小小菜鸟』  阅读(2685)  评论(0编辑  收藏  举报