我正在使用arduino的wifi屏蔽并试图通过在我的循环()中搜索CRLF(\ r \ n)来删除http标头。
while (client.available()) {
char c = client.read();
// I need to check to see if it's crlf
// and parse the response.
}
最简单的方法是什么?我只对响应而不是标题感兴趣。我想把它放在缓冲区中并查找当前和前一个字符以匹配crlf(\ r \ n)。
连连呢?感谢。
答案 0 :(得分:0)
尝试使用TextFinder库http://playground.arduino.cc/Code/TextFinder
答案 1 :(得分:-2)
您应该考虑使用现有的HttpClient库,或者,或者,看看如何在那里实现HTTP响应的解析。