如何检查IP地址是否可达

发布于 2024-12-12 06:42:21 字数 601 浏览 0 评论 0原文

在我的应用程序中,我使用下面的代码检查了是否存在互联网连接

   private boolean isNetworkAvailable() {    
             ConnectivityManager connectivityManager = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE); 
             NetworkInfo activeNetworkInfo = connectivityManager.getActiveNetworkInfo();  
             return activeNetworkInfo != null; }

现在的问题是,我如何检查与一台远程计算机IP的连接是否存在...我需要连接到外部IP Web服务... ..需要检查连接。假设链接如下所示

http://192.168.1.158/VisionEPODWebservice/Manifest.asmx

In my application I have checked whether ineternet connection is there using the below code

   private boolean isNetworkAvailable() {    
             ConnectivityManager connectivityManager = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE); 
             NetworkInfo activeNetworkInfo = connectivityManager.getActiveNetworkInfo();  
             return activeNetworkInfo != null; }

Now the problem is that how can i check whether conncetion to one remote computer Ip is exist or not...I need to connect to an external IP webservice.....Need to check connetion to that .Suppose the link is like as given below

http://192.168.1.158/VisionEPODWebservice/Manifest.asmx

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

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

发布评论

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

评论(1

双马尾 2024-12-19 06:42:21
InetAddress.getByName(ip).isReachable(timeout);

请参阅 InetAddress 的文档

InetAddress.getByName(ip).isReachable(timeout);

see documentation of InetAddress

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