gpt4 book ai didi

c++ - 提升 : read_until "\n" reads until ""

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:02:54 26 4
gpt4 key购买 nike

我正在开发一个使用 boost::asio 来处理以“\n”结尾的传入文本的 tcp 客户端。但是,当我发送包含空格的文本时,它会在第一个空格出现后丢弃所有字符。我已经确认我发送的文本是完整的。

这是我的代码:

boost::system::error_code error; 
boost::asio::streambuf buffer;
boost::asio::read_until( *socket, buffer, "\n", error );
std::istream str(&buffer);
std::string s;
str >> s;

最佳答案

使用 std::getline 而不是 >>>,这是在遇到空格时停止读取的原因:

std::istream str(&buffer); 
std::string s;
std::getline(str, s);

关于c++ - 提升 : read_until "\n" reads until "",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7905981/

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