我有一个Web服务,它接受2个参数来保存json:fileName和一个json字符串。我需要将json字符串发布到此Web服务。我尝试了How to send a JSON object over Request with Android?中概述的方法,但它似乎不起作用。任何指针??
public void postDataToServer(String url, String jsonStr) throws ClientProtocolException, IOException
{
int TIMEOUT_MILLISEC = 10000; // = 10 seconds
HttpParams httpParams = new BasicHttpParams();
HttpConnectionParams.setConnectionTimeout(httpParams, TIMEOUT_MILLISEC);
HttpConnectionParams.setSoTimeout(httpParams, TIMEOUT_MILLISEC);
httpParams.setParameter("fileName","testFile");
httpParams.setParameter("json",jsonStr);
HttpClient client = new DefaultHttpClient(httpParams);
HttpPost request = new HttpPost(url);
request.setEntity(new ByteArrayEntity(
jsonStr.getBytes("UTF8")));
HttpResponse response = client.execute(request);
}
答案 0 :(得分:0)
fileName和json不会进入httpParams。他们进入实体。您应该使用HttpEntity,很可能是http://developer.android.com/reference/org/apache/http/client/entity/UrlEncodedFormEntity.html 使用2个BasicNameValuePair,一个用于fileName,一个用于json。
答案 1 :(得分:0)
这是我的自定义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");