link中的服务器是否适用于Android?
当我尝试使用构造函数时,
HttpService(HttpProcessor processor, ConnectionReuseStrategy connStrategy, HttpResponseFactory responseFactory, HttpRequestHandlerResolver handlerResolver, HttpParams params)
Eclipse说没有定义构造函数。 Eclipse提供了一个快速修复,将构造函数更改为:
HttpService(HttpProcessor proc, ConnectionReuseStrategy connStrategy, HttpResponseFactory responseFactory)
在这种情况下,如何为我的请求注册处理程序?
提前致谢!