我知道如何检查设备是否有可用的互联网连接是一个很大的讨论。
我尝试过 Ping、WebClient 和 HTTPClient。 我还使用 Xamarin Essentials 和连接插件。
所有这些都有效,只需向谷歌或您选择的服务器发出请求,您就会得到答案。 您还可以设置 2 秒的超时时间等等。
但现在我遇到了我连接到 WIFI 但 WIFI 本身没有 Activity 的互联网连接的情况。
所以我写的所有东西都不再起作用了。问题是超时会以某种方式被忽略。也许.net中的错误?我不知道。
现在我发现了最后一件事:
try
{
var request = (HttpWebRequest)WebRequest.Create("https://www.google.com");
request.KeepAlive = false;
request.Timeout = 2000;
using (var response = (HttpWebResponse)await request.GetResponseAsync())
{
if (response.StatusCode == HttpStatusCode.OK)
{
//Connection to internet available
return true;
}
else
{
//Connection to internet not available
return false;
}
}
}
catch (WebException webEx)
{
if (webEx.Status == WebExceptionStatus.Timeout)
{
return false;
}
}
catch (Exception e)
{
return false;
}
这是在达到 2 秒超时时我得到 WebException 的唯一解决方案。 在所有其他解决方案中,我坚持超过 1 分钟,直到达到超时。另外,当我将其设置为 500 毫秒或其他值时。
有人知道为什么没有达到给定超时的原因,例如使用其他方法吗?
解决方案:
您可以使用DependencyService
来实现它。引用以下代码。
in Forms ,create an interface
using System;
namespace app1
{
public interface INetworkAvailable
{
bool IsNetworkAvailable();
}
}
in iOS project
using System;
using Xamarin.Forms;
using Foundation;
[assembly: Dependency(typeof(IsNetworkAvailableImplement))]
namespace xxx.iOS
{
public class IsNetworkAvailableImplement:INetworkAvailable
{
public IsNetworkAvailableImplement()
{
}
bool INetworkAvailable.IsNetworkAvailable()
{
NSString urlString = new NSString("http://captive.apple.com");
NSUrl url = new NSUrl(urlString);
NSUrlRequest request = new NSUrlRequest(url, NSUrlRequestCachePolicy.ReloadIgnoringCacheData, 3);
NSData data = NSUrlConnection.SendSynchronousRequest(request, out NSUrlResponse response, out NSError error);
NSString result = NSString.FromData(data,NSStringEncoding.UTF8);
if(result.Contains(new NSString("Success")))
{
return true;
}
else
{
return false;
}
}
}
}
不要忘记允许 HTTP 访问。在 info.plist 中添加以下代码
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
in Android project
using System;
using Java.Lang;
using Xamarin.Forms;
[assembly: Dependency(typeof(IsNetworkAvailableImplement))]
namespace xxx.Droid
{
public class IsNetworkAvailableImplement:INetworkAvailable
{
public IsNetworkAvailableImplement()
{
}
public bool IsNetworkAvailable()
{
Runtime runtime = Runtime.GetRuntime();
Process process = runtime.Exec("ping -c 3 www.google.com");
int result = process.WaitFor();
if(result==0)
{
return true;
}
else
{
return false;
}
}
}
}
现在你可以在表单中调用它,就像
bool isAvailable= DependencyService.Get<INetworkAvailable>().IsNetworkAvailable();
if(isAvailable)
{
Console.WriteLine("network is available");
}
else
{
Console.WriteLine("network is unavailable");
}
关于android - 当 WIFI 网络没有 Internet 连接时检查 .net 或 Xamarin Internet 可用性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54197727/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |