百度搜索:蓝易云【Linux下C++ STL获取Mac地址教程】

本文涉及的产品
无影云电脑个人版,1个月黄金款+200核时
资源编排,不限时长
无影云电脑企业版,4核8GB 120小时 1个月
简介: 请注意,获取MAC地址需要root权限,因此在运行代码时可能需要使用sudo权限。另外,不同的Linux发行版和内核版本可能会稍有差异,您可能需要根据您的具体环境进行适当的调整。

在Linux下使用C++ STL获取MAC地址的教程如下:

#include <iostream>
#include <fstream>
#include <sstream>
#include <vector>
#include <algorithm>

// 从/sys/class/net目录获取所有网络接口的名称
std::vector<std::string> getInterfaceNames() {
    std::vector<std::string> names;
    std::ifstream file("/sys/class/net/operstate");
    if (file.is_open()) {
        std::string line;
        while (std::getline(file, line)) {
            if (line != "down") { // 只获取状态为"up"的接口
                std::string interfaceName = line.substr(0, line.find(':'));
                names.push_back(interfaceName);
            }
        }
        file.close();
    }
    return names;
}

// 从/sys/class/net/<interface>/address获取指定网络接口的MAC地址
std::string getMACAddress(const std::string& interfaceName) {
    std::string macAddress;
    std::ifstream file("/sys/class/net/" + interfaceName + "/address");
    if (file.is_open()) {
        std::getline(file, macAddress);
        file.close();
    }
    return macAddress;
}

int main() {
    std::vector<std::string> interfaceNames = getInterfaceNames();

    if (interfaceNames.empty()) {
        std::cout << "未找到可用的网络接口。\n";
        return 1;
    }

    for (const std::string& interfaceName : interfaceNames) {
        std::string macAddress = getMACAddress(interfaceName);
        if (!macAddress.empty()) {
            // 格式化MAC地址为 xx:xx:xx:xx:xx:xx
            std::ostringstream formattedMAC;
            std::string delimiter = ":";
            std::string::size_type pos = 0;
            while (pos != std::string::npos) {
                formattedMAC << macAddress.substr(pos, 2) << delimiter;
                pos += 2;
            }
            formattedMAC.str().pop_back(); // 去除最后一个冒号

            std::cout << "接口名: " << interfaceName << ", MAC地址: " << formattedMAC.str() << "\n";
        }
    }

    return 0;
}

上述C++代码通过解析 /sys/class/net 目录下的接口信息来获取所有状态为"up"的网络接口名称,然后逐个获取对应接口的MAC地址,并将其格式化为 xx:xx:xx:xx:xx:xx 的形式进行输出。

请注意,获取MAC地址需要root权限,因此在运行代码时可能需要使用sudo权限。另外,不同的Linux发行版和内核版本可能会稍有差异,您可能需要根据您的具体环境进行适当的调整。

目录
相关文章
|
1月前
|
存储 Linux C语言
Linux C/C++之IO多路复用(aio)
这篇文章介绍了Linux中IO多路复用技术epoll和异步IO技术aio的区别、执行过程、编程模型以及具体的编程实现方式。
69 1
Linux C/C++之IO多路复用(aio)
|
15天前
|
iOS开发 索引 MacOS
mac文件搜索工具
【10月更文挑战第11天】
|
25天前
|
存储 程序员 C++
C++常用基础知识—STL库(2)
C++常用基础知识—STL库(2)
64 5
|
25天前
|
存储 自然语言处理 程序员
C++常用基础知识—STL库(1)
C++常用基础知识—STL库(1)
44 1
|
28天前
|
Ubuntu Linux 编译器
Linux/Ubuntu下使用VS Code配置C/C++项目环境调用OpenCV
通过以上步骤,您已经成功在Ubuntu系统下的VS Code中配置了C/C++项目环境,并能够调用OpenCV库进行开发。请确保每一步都按照您的系统实际情况进行适当调整。
233 3
|
1月前
|
资源调度 Linux 调度
Linux C/C++之线程基础
这篇文章详细介绍了Linux下C/C++线程的基本概念、创建和管理线程的方法,以及线程同步的各种机制,并通过实例代码展示了线程同步技术的应用。
24 0
Linux C/C++之线程基础
|
27天前
|
算法 数据处理 C++
c++ STL划分算法;partition()、partition_copy()、stable_partition()、partition_point()详解
这些算法是C++ STL中处理和组织数据的强大工具,能够高效地实现复杂的数据处理逻辑。理解它们的差异和应用场景,将有助于编写更加高效和清晰的C++代码。
20 0
|
27天前
|
Linux
linux/mac 下查看、修改文件权限的命令
这篇文章介绍了在Linux和Mac操作系统下如何查看和修改文件及文件夹的权限。
46 0
|
1天前
|
存储 编译器 Linux
【c++】类和对象(上)(类的定义格式、访问限定符、类域、类的实例化、对象的内存大小、this指针)
本文介绍了C++中的类和对象,包括类的概念、定义格式、访问限定符、类域、对象的创建及内存大小、以及this指针。通过示例代码详细解释了类的定义、成员函数和成员变量的作用,以及如何使用访问限定符控制成员的访问权限。此外,还讨论了对象的内存分配规则和this指针的使用场景,帮助读者深入理解面向对象编程的核心概念。
10 4
|
24天前
|
存储 编译器 对象存储
【C++打怪之路Lv5】-- 类和对象(下)
【C++打怪之路Lv5】-- 类和对象(下)
22 4
下一篇
无影云桌面