我正在通过HttpsUrlConnection
或HttpUrlConnection
从我的Android应用程序连接到网络服务器,具体取决于设置。现在我没有任何问题,但昨天我开始收到http/https status
回复-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
应该代表什么。是对某种错误或其他什么的回应?
答案 0 :(得分:4)
HTTP响应代码-1,表示连接或响应处理出错。 HttpURLConnection常常会让连接保持活动状态。
如果要关闭,则必须将http.keepAlive系统属性设置为false。
以编程方式执行此操作的方法是将其放在应用程序的开头:
System.setProperty("http.keepAlive", "false");