如何从 Flex - AIR 执行 ping 操作?

发布于 2024-08-20 04:13:15 字数 263 浏览 2 评论 0原文

我很无聊,因为我的开发服务器宕机了,我正在运行命令提示符来无限期地 ping 服务器,这样我就能看到它们何时停止超时,并知道我可以再次工作。与此同时,我想制作一个 Air 应用程序来为我做这件事,这样我就可以让它发出鸣叫声或警报,或者在它开始能够连接到服务器时做一些事情。

所以我需要从让 AIR 执行 ping 操作开始,有人知道如何执行此操作吗?我找不到任何帮助。我无法使用 HTTPService,因为无论它是什么损坏了(认为是 VPN),我们的开发网站仍然正常运行。

谢谢

I'm bored cause my development server is down and I'm running the command prompt to ping the server indefinitely so that I'll see when they stop timing out and know that I can work again. In the meantime I wanted to make an Air app that will do this for me, so I can have it chirp or alarm or do something when it starts to be able to connect to the server.

So I need to start with having AIR do the ping, does anyone know how to do this? I can't find any help on it. I can't use the HTTPService because whatever it is that is broken (think it's the VPN), our dev web site is still up.

Thanks

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

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

发布评论

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

评论(3

萝莉病 2024-08-27 04:13:15

否则,您可以使用 AIR 2.0 beta 的 NativeProcess 类,并使用操作系统的 ping 命令。

您可以在此处找到有关如何使用它的信息。

Otherwise you can use the NativeProcess class of the AIR 2.0 beta, and use the ping command of your operating system.

You can find informations on how to use it here.

不喜欢何必死缠烂打 2024-08-27 04:13:15

根据文档,从 ServiceMonitor 继承的 SocketMonitor 将检查基本可用性,但不是真正的 ping。如果你想真正“ping”服务器,你需要使用套接字来实现协议,这个维基百科文章的链接可能会有所帮助。

According to the docs, SocketMonitor, descending from ServiceMonitor will check basic availability, but not a true ping. If you want to truly "ping" the server, you would need to use a socket an implement the protocol, This link to the Wikipedia article might help.

神仙妹妹 2024-08-27 04:13:15

AIR SDK 提供了一些类(URLMonitor、SocketMonitor)来处理此问题:

http://livedocs.adobe.com/flex/3/html/help.html?content=network_connectivity_1.html

The AIR SDK offers some classes (URLMonitor, SocketMonitor) to handle this:

http://livedocs.adobe.com/flex/3/html/help.html?content=network_connectivity_1.html

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