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
转载于:https://www.cnblogs.com/xxcainiao/archive/2009/02/12/1388932.html
总结
以上是生活随笔为你收集整理的Flex 中取得当前服务IP地址的全部内容,希望文章能够帮你解决所遇到的问题。
- 上一篇: 家属签证计时
- 下一篇: Xml,XPath,XSLTxue 学习