Arduino客户端从http(strip header)读取crlf

时间:2013-05-10 18:59:53

标签: http arduino

我正在使用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)。

连连呢?感谢。

2 个答案:

答案 0 :(得分:0)

答案 1 :(得分:-2)

您应该考虑使用现有的HttpClient库,或者,或者,看看如何在那里实现HTTP响应的解析。