我一直在使用版本 2.3.3 (API 10) 开发一个 Android 应用程序。该应用程序仅使用 Flickr Java API (flickrj) 根据标签、日期、地理信息等进行某些搜索查询,并将搜索结果照片显示给用户。我已经为此工作了 2 周,并使用我的 HTC Sensation 通过 USB 调试器对其进行调试。今天,不知何故,我开始收到一条恼人的警告消息,在我的 LogCat 中反复循环。如下:
11-30 00:31:43.083: I/org.restlet(22899): Couldn't find the mandatory "Host" HTTP header.
11-30 00:31:43.143: D/com.fd.httpd(22899): sdcard phone type != 1
11-30 00:31:43.143: D/com.fd.httpd(22899): emmc phone type != 1
11-30 00:31:43.163: I/LogService(22899): 2011-11-30 00:31:43 127.0.0.1 - 127.0.0.1 8182 GET /info/ - 200 1143 0 52 http://null - -
11-30 00:31:43.163: I/Server(22899): Addition of the standard header "pragma" is discouraged as a future versions of the Restlet API will directly support it.
11-30 00:31:43.163: W/Server(22899): Addition of the standard header "cache-control" is not allowed. Please use the equivalent property in the Restlet API.
11-30 00:31:43.163: W/Server(22899): Addition of the standard header "expires" is not allowed. Please use the equivalent property in the Restlet API.
当我关闭或重新启动手机时,警告消息不再循环播放。但是当我开始使用 USB 调试器玩弄我的应用程序时,警告会在一段时间后再次出现。我可以毫无问题地继续开发/调试我的应用程序,但是由于这些警告挤满了 LogCat 窗口,因此很难追踪正在发生的事情。
我检查了其他人是否有同样的问题,我得到的唯一线索是检查警告中重复的 pid 号:22899。这个 pid no 属于包“com.fd.httpd”(HTC同步应用程序),这是我设置 USB 驱动程序以使用 PC 进行调试所必需的。但我不知道为什么 HTC Sync 会导致错误。
如果有人能分享他们关于原因和可能解决方案的想法,我会很高兴。感谢您的时间。