如何在HttpClient中进行请求?
我已经使用 jersey 框架和 java 编写了 REST wed 服务。 如果用户想在curl中请求HttpGet,他需要这样写:
curl -u username:password -H "Content-Type:application/...." http://localhost:8080/project/user
现在,我正在实现将调用Web服务的android。 有谁知道如何在android中使用HttpClient调用Web服务? 如何在HttpClient中设置用户名和密码以与curl命令-u username:password
匹配?
谢谢
I have write REST wed service using jersey framework and java.
If user want to request HttpGet in curl he need to write like:
curl -u username:password -H "Content-Type:application/...." http://localhost:8080/project/user
Now, I am implement android which will call web service.
Do anyone know how to use HttpClient in android to call web service?
How to set username and password in HttpClient in order to match with curl command -u username:password
?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
希望这段代码会有所帮助
Hope this code will help
@sudo 尝试这个简单的代码
HttpURLConnection conn = null;
@sudo try this simple code
HttpURLConnection conn = null;