我的Android应用程序有一个BroadcastReceiver
。在开始时,我开始Service
,其AlarmManager
每10分钟定期呼叫我的接收器,接收器尝试建立http连接。当接收者试图创建一个httpConnection有时需要在行httpConnection.getResponseCode();
或androidHttpTransport.call(soapAction, envelope);
中进行,并且在这些情况下,android UI(Activity)会挂起并等待接收者的操作完成。但我认为BroadcastReceiver的操作是在一个单独的线程中,它不应该暂停UI线程。
为什么会发生这种情况,我该如何纠正?
我在接收器中的httpconnection:
private Object callWebServiceMethodPublic(String url,
String namespace, String methodName,
HashMap<String, Object> parameters, String soapAction)
throws Exception {
//System.setProperty("http.keepAlive", "false");
Log.i("WebService", "URL: " + url);
Log.i("WebService", "MethodName: " + methodName);
Log.i("SendMapMovements", "1.2.3.1");
URL myurl = new URL(url);
URLConnection connection = myurl.openConnection();
connection.setConnectTimeout(20 * 1000);
//connection.setRequestProperty("Connection", "close");
HttpURLConnection httpConnection = (HttpURLConnection) connection;
Log.i("SendMapMovements", "1.2.3.2");
int responseCode = -1;
try {
responseCode = httpConnection.getResponseCode();
Log.i("SendMapMovements", "1.2.3.3");
} catch (Exception e1) {
if (e1.toString().contains("Network is unreachable")) {
} else if (e1.toString().contains("SocketTimeoutException")) {
} else {
throw e1;
}
}
if (responseCode == HttpURLConnection.HTTP_OK) {
httpConnection.disconnect();
Log.i("SendMapMovements", "1.2.3.4");
SoapObject request = new SoapObject(namespace, methodName);
if (parameters != null) {
String[] keys = new String[0];
keys = (String[]) parameters.keySet().toArray(keys);
Object[] vals = (Object[]) parameters.values().toArray();
for (int i = 0; i < parameters.size(); i++) {
request.addProperty(keys[i], vals[i]);
Log.i("WebService", keys[i] + ": " + vals[i]);
}
}
Log.i("SendMapMovements", "1.2.3.5");
SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(
SoapEnvelope.VER11);
envelope.dotNet = true;
envelope.setOutputSoapObject(request);
HttpTransportSE androidHttpTransport = new HttpTransportSE(url,
TimeOutInSeconds * 1000);
Log.i("SendMapMovements", "1.2.3.6");
try {
androidHttpTransport.call(soapAction, envelope);
Log.i("SendMapMovements", "1.2.3.7");
} catch (Exception e) {
if (e.toString().contains("XmlPullParserException")) {
throw new Exception(...);
}
}
Object so = envelope.getResponse();
System.gc();
return so;
} else {
httpConnection.disconnect();
Log.i("SendMapMovements", "1.2.3.8");
String strErrorDescription = getHttpErrorDescription(responseCode);
throw new Exception(strErrorDescription);
}
}
答案 0 :(得分:1)
您必须在新的Thread
上运行您的连接代码,而不是UI Thread (Main Thread)
,因为BroadcastReceiver
和您的Activity
在同一个主题上运行。