Android Https状态码-1

问题描述 投票:3回答:2

根据设置,我将通过HttpsUrlConnectionHttpUrlConnection从我的Android应用程序连接到网络服务器。目前,我没有任何问题,但是昨天我开始收到http/https status响应-1。即使有某种错误,Web服务器也无法将其返回给我。我连接到的服务器设计为在出现某种问题时返回errorCodeerrorString。这是我正在使用的代码,但我认为问题不在这里。

    public void UseHttpConnection(String url, String charset, String query) {
    try {
        HttpURLConnection connection = (HttpURLConnection) new URL(url)
                .openConnection();
        connection.setDoOutput(true);
        connection.setRequestMethod("POST");
        connection.setRequestProperty("Charset", charset);
        connection.setRequestProperty("Content-Type",
                "application/x-www-form-urlencoded;charset=" + charset);
        OutputStream output = null;
        try {
            output = connection.getOutputStream();
            output.write(query.getBytes(charset));
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if (output != null)
                try {
                    output.close();
                } catch (IOException logOrIgnore) {
                }
        }

        int status = ((HttpURLConnection) connection).getResponseCode();
        Log.i("", "Status : " + status);

        for (Entry<String, List<String>> header : connection
                .getHeaderFields().entrySet()) {
            Log.i("Headers",
                    "Headers : " + header.getKey() + "="
                            + header.getValue());
        }

        InputStream response = new BufferedInputStream(
                connection.getInputStream());

        int bytesRead = -1;
        byte[] buffer = new byte[30 * 1024];
        while ((bytesRead = response.read(buffer)) > 0) {
            byte[] buffer2 = new byte[bytesRead];
            System.arraycopy(buffer, 0, buffer2, 0, bytesRead);
            handleDataFromSync(buffer2);
        }
        connection.disconnect();
    } catch (Exception e) {
        e.printStackTrace();
    }
}

所以我的问题是,-1代表什么。它是对某种错误还是其他的响应?

android http-status-codes httpurlconnection
2个回答
4
投票

HTTP响应代码-1,表示连接或响应处理出现问题。 HttpURLConnection经常使连接保持活动状态。

如果要关闭,则必须将http.keepAlive系统属性设置为false。

以编程方式执行此操作的方法是将其放在应用程序的开头:

System.setProperty("http.keepAlive", "false");

-1
投票

如何在用户方面解决此错误?我对开发人员方面一无所知。假设现在是时候学习一种新的技能了。 谢谢

© www.soinside.com 2019 - 2024. All rights reserved.