获取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地址的主要内容,如果未能解决你的问题,请参考以下文章

SnippetsLab for Mac 1.9 中文共享版 – 强大的代码收藏管理工具

php/js获取客户端mac地址的实现代码

在 Android 6.0 中获取 MAC 地址

php怎么获取mac地址?

获取客户端的ip地址与mac地址总结

windows获取本机MAC地址并写入文件的bat