私は 2 週間、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";
}
}
あなたが私を助けてくれることを願っています。