function GetNetworkState: string; // 得到当前网络连接状态
var
NS: TNetworkState;
begin
NS := TNetworkState.Create;
try
if not NS.IsConnected then // 无网络
result := ‘0‘
else if NS.IsWifiConnected then // wifi
result := ‘1‘
else if NS.IsMobileConnected then // 移动数据
result := ‘2‘;
finally
NS.Free;
end;
end;
delphi 判断前网络连接状态
Posted wcf-delphi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了delphi 判断前网络连接状态相关的知识,希望对你有一定的参考价值。
以上是关于delphi 判断前网络连接状态的主要内容,如果未能解决你的问题,请参考以下文章