首页 > 解决方案 > HttpUrlConnection“PUT”请求也发送“GET”请求

问题描述

我的问题是,当我使用向 myHttpURLConnection发送请求时,它先发送请求,然后再发送请求。我想知道我必须发送请求的任何代码是否导致它也发送请求。PUTREST APIGETPUTPUTGET

我知道这个问题出现在我的Android代码中,因为我也Postman用来发送PUT请求,而且我从来没有遇到过问题。

下面是我用来发送HttpUrlConnection请求的函数的副本。

public String HTTPConnection(String requestType, String url, String input, Context context, Activity activity){
        HttpURLConnection connection = null;
        try {
            URL OBJ = new URL(url);
            connection = (HttpURLConnection) OBJ.openConnection();
            connection.setRequestMethod(requestType);
            switch (requestType.toLowerCase()) {
                case "get":
                    BufferedReader in = new BufferedReader(new InputStreamReader(connection.getInputStream()));
                    String inputLine;
                    StringBuilder response = new StringBuilder();
                    int i = 1;
                    while ((inputLine = in.readLine()) != null) {
                        response.append(inputLine);
                        i++;
                    }
                    in.close();
                    return response.toString();
                case "put":
                    if (!input.equals("")){
                        OBJ.openStream();
                        connection.setRequestProperty("Content-type", "application/json");
                        connection.setRequestProperty("Accept", "application/json");
                        connection.setDoOutput(true);
                    }
                    Writer writer = new BufferedWriter(new OutputStreamWriter(connection.getOutputStream(), "UTF-8"));
                    writer.write(input);
                    writer.flush();
                    writer.close();
                    connection.getInputStream();
                    return "";
                default:
                    return "";
            }
        } catch (IOException e){
            e.printStackTrace();
            return null;
        }
    }

标签: javaandroidhttpurlconnection

解决方案


OBJ.openStream();发送一个 GET 请求(参见java.net.URL.openStream),因为它打开一个输入流来读取该 URL 的内容。


推荐阅读