设置HTTPPOST android?

时间:2012-05-08 10:14:18

标签: java android

我想将httppost设置为我的服务器。 现在我有模拟器的地址,但现在我想在线测试应用程序。 这是代码:

HttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost("http://10.0.2.2/posloviPodaci/index.php");

如何设置我在线服务器的地址?

2 个答案:

答案 0 :(得分:0)

我觉得我可能误解了这个问题,但是你不是只需要更改传递给HttpPost对象的URL,使其指向你的服务器吗?

答案 1 :(得分:0)

我认为您只需要将"http://10.0.2.2/posloviPodaci/index.php"更改为"http://your-site-name/posloviPodaci/index.php"或类似于您在服务器上托管 index.php 的方式。