如何在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 中读取每一行并将每一行发送到服务器。