HI,
我需要在android应用程序中使用http post方法进行web服务。但是在android中使用此方法时显示错误。如何在应用程序或任何其他相同方法中使用此方法来替换此http post方法。
感谢, Lakshmanan。
答案 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
}