`
shuiyan
  • 浏览: 34087 次
  • 性别: Icon_minigender_1
  • 来自: 南京
社区版块
存档分类
最新评论

Flex 中取得当前服务IP地址

    博客分类:
  • Flex
阅读更多

 

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

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics