gpt4 book ai didi

c - Linux C 逐行读取文件

转载 作者:行者123 更新时间:2023-11-30 21:18:48 25 4
gpt4 key购买 nike

如何在 Linux C 中编写逐行读取文件的代码?

在 Windows C++ 中,我使用 ifstream。

我对linux不太了解,请指教?

好了,大家冷静一点,不要太沮丧。

这是代码:

char fpath = "file.txt";
char names;
FILE *fp;

ifstream fs(fpath);

while (fs >> names)
{
// here is some buffer to send to a server.
}

所以在这里我需要读取 file.txt 中的每一行并将每一行发送到服务器。

最佳答案

在 Linux 上,您有可用的 POSIX 库,因此您想使用 getline .

关于c - Linux C 逐行读取文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13555097/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com