如何在flex中检查互联网连接是否可用

发布于 2024-10-05 08:24:29 字数 86 浏览 2 评论 0原文

任何人都可以帮助我,如何检查我的 Flex 应用程序中的互联网连接是否可用。另一种情况是,如果网络连接存在,但互联网连接出现问题,如何检查互联网连接是否可用。

can anyone help me, how to check whether internet connection is available or not in my flex application.One more scenario is, if network connection is there but some problem in internet connection how to check internet connection is available or not.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

别忘他 2024-10-12 08:24:29

这里有一个很好的例子:
http://livedocs.adobe.com/flex/3 /html/help.html?content=network_connectivity_1.html

import air.net.URLMonitor;
import flash.net.URLRequest;
import flash.events.StatusEvent;

var monitor:URLMonitor;
monitor = new URLMonitor(new URLRequest('http://www.adobe.com'));
monitor.addEventListener(StatusEvent.STATUS, announceStatus);
monitor.start();

function announceStatus(e:StatusEvent):void {
    trace("Status change. Current status: " + monitor.available);
}

There is a good example here:
http://livedocs.adobe.com/flex/3/html/help.html?content=network_connectivity_1.html

import air.net.URLMonitor;
import flash.net.URLRequest;
import flash.events.StatusEvent;

var monitor:URLMonitor;
monitor = new URLMonitor(new URLRequest('http://www.adobe.com'));
monitor.addEventListener(StatusEvent.STATUS, announceStatus);
monitor.start();

function announceStatus(e:StatusEvent):void {
    trace("Status change. Current status: " + monitor.available);
}
我一直都在从未离去 2024-10-12 08:24:29

上面的答案有效,但我想补充一点,将其直接指向您的服务器(如果您有的话),而不仅仅是 Adob​​e 也将允许您监视自己的服务器并相应地处理它。

The answer above works but I would like to add that pointing it to your server directly(if you have one) rather than just Adobe will also allow you to monitor your own server and handle it accordingly.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文