使用http post在android中发送xml文件

时间:2011-04-07 14:37:20

标签: android xml http http-post

我想知道是否有人知道一个好的教程。我的应用程序中有2个带有用户名和密码的edittexts。我想在xml文件中写这些并将其发送到我的服务器。我正在考虑一个打开连接,写入xml,发送它,等待答案的函数,这个函数将有两个输入参数,即用户名和密码。 请发给我代码建议:-) thanks

2 个答案:

答案 0 :(得分:1)

之前已经问过你的问题:Android, sending XML via HTTP POST (SOAP)一个简单的谷歌搜索:android http post xml返回结果,当然SO也有搜索功能;)

答案 1 :(得分:0)

您要查看的是HttpClient课程。你可能想做这样的事情:

HttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost("http://www.example.com/myscript");
HttpResponse response = httpClient .execute(httpPost );

使用httppost.setEntity添加您的数据。这类事情有很多代码示例。一个简单的谷歌搜索应该为您提供大量的信息。