这是我的自定义 WebServiceHelper 类:
public class WebserviceHelper {
private Context c;
public String bytesSent;
private String tempRespo;
public String hitWeb(Context c,String url, String json){
this.c=c;
try {
tempRespo = new hitAsync(url,json).execute().get();
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (ExecutionException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return tempRespo;
}
class hitAsync extends AsyncTask<Void, Void , String>
{
private String url;
private String json;
ProgressDialog pDialog;
public hitAsync(String url, String json) {
// TODO Auto-generated constructor stub
this.url = url;
this.json = json;
}
@Override
protected void onPostExecute(String result) {
// TODO Auto-generated method stub
super.onPostExecute(result);
pDialog.dismiss();
}
@Override
protected void onPreExecute() {
// TODO Auto-generated method stub
super.onPreExecute();
pDialog = new ProgressDialog(c);
pDialog.setMessage("Please Wait...");
pDialog.show();
pDialog.setCancelable(false);
}
@Override
protected String doInBackground(Void... params) {
// TODO Auto-generated method stub
HttpClient client = new DefaultHttpClient();
HttpConnectionParams.setConnectionTimeout(client.getParams(), 10000); //Timeout Limit
HttpResponse response;
try{
HttpPost post = new HttpPost(url);
StringEntity se = new StringEntity( json);
se.setContentType(new BasicHeader(HTTP.CONTENT_TYPE, "application/json"));
post.setEntity(se);
response = client.execute(post);
/*Checking response */
if(response!=null){
InputStream in = response.getEntity().getContent(); //Get the data in the entity
BufferedInputStream bis = new BufferedInputStream(in);
ByteArrayBuffer baf = new ByteArrayBuffer(20);
int current = 0;
while ((current = bis.read()) != -1) {
baf.append((byte) current);
}
bytesSent = new String(baf.toByteArray());
}
}
catch(Exception e){
e.printStackTrace();
}
return bytesSent;
}
}
然后在你的班级中制作它的对象并做你的事情:
ws = new WebserviceHelper();
String respo = ws.hitWeb(// ur class context", "// url","//json string");