获取MAC地址
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取MAC地址相关的知识,希望对你有一定的参考价值。
实例代码:
#include <Windows.h> #include <iphlpapi.h> #include <list> #include <string> #pragma comment(lib, "Iphlpapi.lib") std::list<std::string> GetMACs() { std::list<std::string> lst; ULONG ulSize = 0; ::GetAdaptersInfo(nullptr, &ulSize); if (ulSize == 0) return lst; PIP_ADAPTER_INFO pInfo = (PIP_ADAPTER_INFO)malloc(ulSize); if (::GetAdaptersInfo(pInfo, &ulSize) != ERROR_SUCCESS) { free(pInfo); return lst; } PIP_ADAPTER_INFO pNext = pInfo; while (pNext != nullptr) { std::string mac; char tmp[10]; for (int i = 0; i < (int)pNext->AddressLength; i++) { sprintf_s(tmp, "%02X-", pNext->Address[i]); mac += tmp; } if (!mac.empty()) { mac.pop_back(); lst.emplace_back(std::move(mac)); } pNext = pNext->Next; } free(pInfo); return lst; } int main() { GetMACs(); return 0; }
以上是关于获取MAC地址的主要内容,如果未能解决你的问题,请参考以下文章