我一直在尋找兩個星期,如何使用Android上的發佈發佈數據,我到處尋找,嘗試了每個解決方案,但它仍然無法正常工作。 現在,我只需要發佈一個字符串鏈,然後我將不得不發佈帶有一些字符串鏈的圖片。我的實際代碼是:在Android上使用POST發佈數據
public String Publication()
{
try
{
Intent intentget = getIntent();
String titre = intentget.getExtras().getString("titre");
String poster = titre +"="+getTableau(_tlab, iNbLignes, iNbCol);
Log.d("reponse","gettableau");
HttpClient client = new DefaultHttpClient();
HttpPost post = new HttpPost("http://tweet.envrac.ch/Publication.php");
Log.d("reponse","url");
List<NameValuePair> pairs = new ArrayList<NameValuePair>(1);
pairs.add(new BasicNameValuePair("LabColler", poster));
Log.d("reponse","pairs");
post.setEntity(new UrlEncodedFormEntity(pairs));
Log.d("reponse","encode");
//bug ici
HttpResponse response = client.execute(post, new BasicHttpContext());
Log.d("reponse","post");
return "reponse = "+response;
}
catch (Exception e)
{
// TODO Auto-generated catch block
e.printStackTrace();
return "erreur";
}
}
希望你能幫助我。
具有u添加所需的權限在清單? – blessenm
是的,當然,我做了^^ – Jen
它看起來像不執行,行「HttpResponse response = client.execute(post,new BasicHttpContext());」。 – Jen