私はアンドロイドには新しく、今はアンドロイドのHTTPリクエストに関するベストチュートリアルを探すのに疲れています。私はphpServerに、これらのパラメータを送信しようとしているAndroidからhttp投稿リクエストを送信するには?
、
名= "いくつかの名前"
メール= "一部の電子メール"
は、我々はこれを行うことができますMainActivity.javaファイルにありますか?これにはjar(ライブラリ)ファイルが必要ですか? ご意見をお待ちしております。私はこれを試してみました
、@Override
public void onClick(View view) {
if(view == btnSubscribe){
HttpURLConnection client = null;
try {
URL url = new URL("http://www/somewebsite.com/API/SUBSCRIBE");
client = (HttpURLConnection) url.openConnection();
client.setRequestMethod("POST");
client.setRequestProperty("name","test one");
client.setRequestProperty("email","[email protected]");
client.setDoOutput(true);
OutputStream outputPost = new BufferedOutputStream(client.getOutputStream());
outputPost.flush();
outputPost.close();
client.setChunkedStreamingMode(0);
} catch(MalformedURLException error) {
showError("Handles an incorrectly entered UR");
}
catch(SocketTimeoutException error) {
showError("Handles URL access timeout");
}
catch (IOException error) {
showError("Handles input and output errors");
}finally {
if(client != null)
client.disconnect();
}
}
}
ここでコード???? ???? –
@Sahan [this](http://stackoverflow.com/help/mcve) – Nisarg
@IntelliJAmiya申し訳ありません私のために働いていないので、すべてのコードをクリアしました。今私は新しいプロジェクトに入っています。 – Sahan