我有这段代码:
jsonObject1=getLocationInfo(direction);
它旨在返回一个jsonObject,稍后将被解析,我将得到纬度和经度。
这是方法:
public JSONObject getLocationInfo(final String address) {
Thread thread=new Thread(){
public void run(){
String adressString=address.replaceAll("\\s+",",");
StringBuilder stringBuilder = new StringBuilder();
try {
HttpPost httppost = new HttpPost("http://maps.google.com/maps/api/geocode/json?address=" + adressString + "&sensor=false");
HttpClient client = new DefaultHttpClient();
HttpResponse response;
stringBuilder = new StringBuilder();
response = client.execute(httppost);
HttpEntity entity = response.getEntity();
InputStream stream = entity.getContent();
int b;
while ((b = stream.read()) != -1) {
stringBuilder.append((char) b);
}
} catch (ClientProtocolException e) {
} catch (IOException e) {
}
;
try {
jsonObject = new JSONObject(stringBuilder.toString());
} catch (JSONException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
};
thread.start();
return jsonObject;
}
问题是......因为该方法涉及HttpGet,所以它必须在另一个线程中。但是,在thread.start()方法之后,返回jsonObject行被调用,因此返回的对象将为null ...我怎么能在返回任何内容之前等待线程结束?
谢谢。
答案 0 :(得分:0)
使用AsyncTask,所有网络内容都在doInBackground
完成,之后完成方法onPostExecute
被调用,因此您知道httpget何时完成并执行您的操作需要做那里
答案 1 :(得分:0)
有几种方法可以做到这一点。但是如果您只想使用上面的线程,请使用Handler并通过Handlers发送数据。让我知道您是否想看一些代码。