gpt4 book ai didi

java - 发送带有 URL 中的查询字符串的 HTTP Post

转载 作者:太空宇宙 更新时间:2023-11-04 13:32:30 24 4
gpt4 key购买 nike

我对使用查询字符串发送 HTTP Post 存在疑问。

我有下面的代码,但该代码不起作用。我尝试通过 Web 服务发送嵌入在 URL 中的用户和密码,但它不起作用。此代码无法连接到网络服务。

@Override
protected String doInBackground(String... params) {

String result = "";

try {
URL url = new URL("http://192.168.0.11:8080/api/Usuario/doLogin?user="+user+"&senha="+password);
HttpURLConnection httpURLConnection = (HttpURLConnection) url.openConnection();
httpURLConnection.setRequestMethod("POST");


BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(httpURLConnection.getInputStream()));
String inputLine;
StringBuilder response = new StringBuilder();

while ((inputLine = bufferedReader.readLine()) != null) {
response.append(inputLine);
}

result = response.toString();
bufferedReader.close();
} catch (Exception e) {
Log.d("InputStream", e.getMessage());
}

return result;
}

最佳答案

我认为你的意思是 GET 请求而不是 POST,并且您应该对查询参数中的变量进行编码,在您的情况下为“用户”和“密码”。

URL url = new URL("http://192.168.0.11:8080/api/Usuario/doLogin?user=" + URLEncoder.encode(user, "UTF-8")+"&senha="+ URLEncoder.encode(password, "UTF-8"));

关于java - 发送带有 URL 中的查询字符串的 HTTP Post,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32028636/

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