C++ 判断网络是否通畅
文章转自王牌软件
站长推荐:NSetup一键部署软件
一键式完成美化安装包制作,自动增量升级,数据统计,数字签名。应对各种复杂场景,脚本模块化拆分,常规复杂的脚本代码,图形化设置。无需专业的研发经验,轻松完成项目部署。(www.nsetup.cn)
只回答业务咨询
站长推荐:NSetup一键部署软件
一键式完成美化安装包制作,自动增量升级,数据统计,数字签名。应对各种复杂场景,脚本模块化拆分,常规复杂的脚本代码,图形化设置。无需专业的研发经验,轻松完成项目部署。(www.nsetup.cn)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
//InternetCheckConnection 有时不准确 //http://bbs.csdn.net/topics/90171586 #include "stdafx.h" #include <Windows.h> #include <Wininet.h> #include <atlstr.h> #pragma comment(lib,"Wininet") //检查网络是否通畅 bool CheckNet(CString& url) { HINTERNET hSession, hFile, hRequest; DWORD dwIndex, dwCodeLen; char dwCode[20]; char* res; //检查一个URL是否有效函数 url.MakeLower(); if(url.Find(_T("http://"))==-1 ){ url = "http://" + url; } hSession = InternetOpen(L"InetURL:/1.0", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL,0); if(hSession) { hFile = InternetOpenUrl(hSession, url, NULL, 0, INTERNET_FLAG_RELOAD, 0); dwIndex = 0; dwCodeLen = 10; HttpQueryInfo(hFile, HTTP_QUERY_STATUS_CODE, dwCode, &dwCodeLen, &dwIndex); res = dwCode; if(strcmp(res, "200") || strcmp(res,"302")){ //200,302未重定位标志 if (hFile) InternetCloseHandle(hFile); InternetCloseHandle(hSession); return true; } } return false; } int _tmain(int argc, _TCHAR* argv[]) { if(CheckNet(CString("www.baidu.com"))) printf("网络通畅"); else printf("网络不通"); getchar(); return 0; } |
demo : http://www.kuaipan.cn/file/id_158691306351099918.htm
学习日记,兼职软件设计,软件修改,毕业设计。
本文出自 学习日记,转载时请注明出处及相应链接。
本文永久链接: https://www.softwareace.cn/?p=510