gpt4 book ai didi

java - 在 JAVA 中点击 URL 而不重定向

转载 作者:行者123 更新时间:2023-12-01 14:28:42 26 4
gpt4 key购买 nike

我想从 java servlet 访问 php 中的 URL。我只想向该 url 发送信息。我不需要转到该 url。我想留在我的页面中。无论如何都要这样做。 ?

最佳答案

您可以简单地在该 url 上发布帖子,就像在 http 组件 doc 中一样

PostMethod post = new PostMethod("http://jakarata.apache.org/");
NameValuePair[] data = {
new NameValuePair("user", "joe"),
new NameValuePair("password", "bloggs")
};
post.setRequestBody(data);
// execute method and handle any error responses.
...
InputStream in = post.getResponseBodyAsStream();
// handle response.

关于java - 在 JAVA 中点击 URL 而不重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16982893/

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