不能在Android应用程序中使用Http Post方法

时间:2010-10-26 03:38:43

标签: android

HI,

我需要在android应用程序中使用http post方法进行web服务。但是在android中使用此方法时显示错误。如何在应用程序或任何其他相同方法中使用此方法来替换此http post方法。

感谢, Lakshmanan。

1 个答案:

答案 0 :(得分:1)

URL url = new URL(my_ip_address);           
URLConnection connection = url.openConnection();
connection.setDoOutput(true);
connection.setDoInput(true);
connection.setRequestProperty("METHOD", "POST");
HttpURLConnection httpConnection = (HttpURLConnection)connection;
int responseCode = httpConnection.getResponseCode();

        if (responseCode == HttpURLConnection.HTTP_OK) {
  //do your stuff
}