我正在通过设置从androids应用程序通过HttpsUrlConnection或HttpUrlConnection连接到Web服务器.目前,我没有任何问题,但是昨天我开始收到http / https状态响应-1.即使有某种错误,Web服务器也无法将其返回给我.我连接到的服务器旨在在出现某种问题时返回errorCode和errorString.这是我正在使用的代码,但我不认为问题出在这里.
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应该代表什么.它是对某种错误还是其他的响应?
解决方法:
HTTP响应代码-1,表示连接或响应处理出错. HttpURLConnection经常使连接保持活动状态.
如果要关闭,则必须将http.keepAlive系统属性设置为false.
以编程方式执行此操作的方法是将其放在应用程序的开头:
System.setProperty("http.keepAlive", "false");