【问题标题】:unistd read() doesn't workunistd read() 不起作用
【发布时间】:2017-08-08 17:37:07
【问题描述】:

我正在尝试使用 unistd 库写入/读取文本文件。稍后我会将它部署到 /dev 路径中的一个文件中。 我正在尝试使用std::vector 类型而不是char buffer[]。所以我写了两个实现,一个使用向量,另一个使用 char 缓冲区。两者都在文件中写得很好,但都不能读取文件。

这是我的测试代码:

使用char的缓冲区

void tests_using_buffer_of_char(const std::string &path)
{
    int file_descriptor_char;   
    char buffer[8] ={0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08};
    std::cout << sizeof(buffer) << std::endl;       

    for(auto i = 0; i < sizeof(buffer); i++)
        std::cout << buffer[i] << std::endl;

    file_descriptor_char = open(path.c_str(), O_RDWR);
    if(file_descriptor_char != -1)
        std::cout << "open with success " << path << std::endl;

    std::size_t size = strlen(buffer);
    ssize_t write_bytes = write(file_descriptor_char, buffer, size);
    std::cout << size << " <-- size of buffer " << write_bytes << " <-- size of writed bytes" <<  std::endl;

    memset(&buffer[0], 0, sizeof(buffer));

    ssize_t read_bytes = read(file_descriptor_char, &buffer, size);
    std::cout << size << " <-- size of buffer " << read_bytes << " <-- size of readed bytes" <<  std::endl;

    for(auto i = 0; i < sizeof(buffer); i++)
        std::cout << buffer[i] << std::endl;

    if(close(file_descriptor_char) != -1)
        std::cout << "close with success "<< path << std::endl;
}

使用向量的缓冲区

void tests_using_buffer_of_vector(const std::string &path)
{
    int file_descriptor_vector;
    std::vector<char> buffer = {0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08};
    std::cout << buffer.size() << std::endl;

    for(auto i : buffer)
        std::cout << i << std::endl;

    file_descriptor_vector = open(path.c_str(), O_RDWR);
    if(file_descriptor_vector != -1)
        std::cout << "open whit success " << path << std::endl;

    ssize_t write_bytes = write(file_descriptor_vector, buffer.data(), buffer.size());
    std::cout << buffer.size() << " <-- size of buffer " << write_bytes << " <-- size of writed bytes" <<  std::endl;   

    buffer.clear();     

    ssize_t read_bytes = read(file_descriptor_vector, buffer.data(), write_bytes);
    std::cout << buffer.size() << " <-- size of buffer " << read_bytes << " <-- size of readed bytes" <<  std::endl;    

    for(auto i : buffer)
        std::cout << i << std::endl;

    if(close(file_descriptor_vector) != -1)
        std::cout << "close with success " << path << std::endl;

}

谢谢大家!

【问题讨论】:

  • unistd 不是库,它是 POSIX 系统上的 C 头文件。当您知道 xy 是为数百万程序员工作的标准函数 时,您可能不应该写“xy 不起作用”你可能只是用错了。
  • 你是对的!谢谢你的建议。在下一个问题上,我会更准确,更少笼统地解决这个问题。

标签: c++ c++11 vector unistd.h


【解决方案1】:

1] 只需使用fclose 并重新打开文件。

2]fseek(fp, 0, SEEK_SET);

3]rewind(fp);

您使用file pointer 指向文件末尾。

【讨论】:

    【解决方案2】:

    您必须将文件描述符重置为文件的开头,然后再尝试将其用于写入后重用它进行读取。您可以关闭文件并重新打开它,也可以从头开始。

    lseek(file_descriptor_vector, SEEK_SET, 0);
    

    在读入之前不要清除你的向量。 clear 方法本质上将释放与向量关联的内存。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2018-07-21
      • 1970-01-01
      • 1970-01-01
      • 2022-10-17
      • 2015-06-11
      • 2015-01-01
      • 1970-01-01
      相关资源
      最近更新 更多