我正在尝试将reqeuest发送到服务器...直到请求没有响应我想执行一个循环打印整数..问题是我的循环一直在继续,如果我执行它直到100它会打印100个值,如果直到1000它打印 1000。我想要的是循环应该取决于响应。一旦发生响应,就应该停止循环线程......
public class ServiceInteraction {
FutureTask<JSONArray> task;
public JSONArray addUser(List<BasicNameValuePair> postPairs_interaction){
JSONArray jArray;
task = new FutureTask<JSONArray>(new Service_C(postPairs_interaction));
ExecutorService pool = Executors.newFixedThreadPool(2);
pool.submit(task);
for(int i = 0 ; i < 1000; i++){
System.out.println("value is "+i);
}//End of for loop
try{
return (jArray = task.get());
}catch(InterruptedException e){
return null;
}catch(ExecutionException e){
return null;
}
}//End Of addUser
这是我的 service_c 类代码...
public Service_C(List<BasicNameValuePair> postPairs) {
this.postPairs = postPairs;
}
@Override
public JSONArray call() throws Exception {
HttpClient httpclient = new DefaultHttpClient();
HttpPost post = new HttpPost("http://10.0.0.62:8080/IDocWS/"+postPairs.get(0).getValue());
post.setEntity(new UrlEncodedFormEntity(postPairs));
ResponseHandler respHandler = new BasicResponseHandler();
String responseData = (String) httpclient.execute(post,respHandler);
try {
JSONArray jArray;
jArray = new JSONArray(responseData);
return jArray;
} catch (JSONException ex) {
Logger.getLogger(Service.class.getName()).log(Level.SEVERE, null, ex);
System.out.println("Error in getting response from the user");
return null;
}
}//End of call method