读取 MAC 地址时文件读取异常

File read exception while reading MAC address

我们有一个通用文件操作 class,它将执行所有基本文件操作。所以我使用相同的文件操作 class 从 Linux 机器读取 MAC 地址,它抛出 basic_ios::clear:iostream 异常。

这是执行文件操作的代码

bool FileIO::ReadTextFile(const std::string & FileName, std::string & Contents)
{
    bool Result = false;
    std::ifstream FileObj;

    try
    {
        FileObj.exceptions(std::ifstream::badbit | std::ifstream::failbit);
        if(DoesFileExist(FileName))
        {
            FileObj.open(FileName, std::ifstream::in);

            FileObj.seekg(0, std::ios::end);
            Contents.resize(FileObj.tellg());
            FileObj.seekg(0, std::ios::beg);

            FileObj.read(&Contents[0], Contents.size());
            FileObj.close();

            Result = true;
        }
    }
    catch (std::exception & e)
    {
        std::cout << "Error when reading from file : " << FileName << " "<< std::strerror(errno) << " Exception : " << e.what() << std::endl;
    }

    return Result;
}

我像下面这样调用这个函数,

std::string MACAddress;
pFOpHandler->ReadEntireTextFile("/sys/class/net/eth0/address", MACAddress);

它正在成功读取 MAC 地址,但文件操作抛出异常并且 MAC 地址字符串包含 MAC 地址和一些垃圾值。

您可能想试试这个。您必须为 fstream 和 sstream 添加包含文件。

bool FileIO::ReadTextFile(const std::string &FileName, std::string &Contents) {
  bool Result = false;
  std::ifstream FileObj;

  try {
    FileObj.exceptions(std::ifstream::badbit | std::ifstream::failbit);
    if (DoesFileExist(FileName)) {
      FileObj.open(FileName, std::ifstream::in);
      std::stringstream FileContents;
      FileContents << FileObj.rdbuf();
      Contents = FileContents.str();

      Result = true;
    }
  } catch (std::exception &e) {
    std::cout << "Error when reading from file : " << FileName << " "
              << std::strerror(errno) << " Exception : " << e.what()
              << std::endl;
  }