PHP CUrl 的 Java 替代品是什么
我是一名 PHP 开发人员,我对 PHP Curl 感到非常满意HTML 页面,以及发布表单数据。
最近我有一个要求,在Java中执行相同的功能,就像上面一样。如果我们能在 Spring Framework 中做到这一点那就太好了。
Possible Duplicates:
How to use curl in Java
cURL equivalent in JAVA
I am a PHP developer, I am very much comfortable with PHP Curl for getting HTML page, as well as posting the form data.
Recently i have a requirement, to do the same functionality in Java, like above. It is very fine if we can do that in Spring FrameWork.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你想使用 Spring 特定的东西,请查看 Spring RestTemplate.
Jersey Client 是另一个流行的面向 REST 的 API。
Apache HttpClient 是一个可靠、成熟的选择。
当然还有旧的 Sun JDK URL 和 URLConnection API。
If you want to use something Spring-specific check out the Spring RestTemplate.
The Jersey Client is another REST-oriented API that is popular.
Apache HttpClient is a solid, mature choice.
And of course there are the good old Sun JDK URL and URLConnection APIs.