gpt4 book ai didi

java - 如何从 servlet 发出具有内容类型和内容的 GET 和 POST 请求

转载 作者:行者123 更新时间:2023-12-01 13:47:23 26 4
gpt4 key购买 nike

我想从 servlet 向另一台服务器发出 GET 和 POST 请求,我将在其中发送 XML 内容和 Content-type header 。

但是,HTTPRequest中没有方法可以设置Content-type和内容。

我怎样才能做到这一点?

最佳答案

使用 HTTPUrlConnection 可以按如下方式实现:

connection = (HttpURLConnection) url.openConnection();
connection.setDoOutput(true);
connection.setRequestProperty("Content-Type", "text/xml");

我个人更喜欢使用 Apache Http 客户端。Apache HTTP 客户端“post xml”示例演示了如何发布 xml 并正确设置发布的实体 mimetype 和编码。

Apache HTTP Client Post XML Example

关于java - 如何从 servlet 发出具有内容类型和内容的 GET 和 POST 请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20260630/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com