使用带参数的android中的httppost方法调用webservice

时间:2011-11-17 06:44:12

标签: android web-services http-post

我想使用Web-service方法拨打Http-post。我想调用此网址:

的http://serverurl/webservice/login.php消息= [{ “用户名”: “durgesh”, “密码”: “pass123”}]

如何调用此方法以及如何传递参数?

1 个答案:

答案 0 :(得分:0)

我认为这可以帮到你

urlpath = “http://192.168.1.158/VisionEPODWebService/VisionEPOD.apk”;             String ApkName =“VisionEPOD.apk”;

        URL url = new URL(urlpath.toString()); 
        // Your given URL.             
        HttpURLConnection c = (HttpURLConnection) url.openConnection();  
        c.setRequestMethod("GET");           
        c.setDoOutput(true);            
        c.connect();