1

我正在使用 arduino 的 wifi shield 并试图通过在我的循环()中搜索 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)。

建议?谢谢。

4

2 回答 2

0

尝试使用 TextFinder 库http://playground.arduino.cc/Code/TextFinder

于 2015-01-26T16:45:51.610 回答
-2

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

于 2013-05-11T10:38:39.010 回答