我是 android 的新手,我想从我的 REST 服务中获取一些数据,但是我在初始化我发送到我的 REST 服务的方法时遇到了一些问题。你知道 REST 服务使用 cURL 来操作一些数据(POST、PUT、GET、DELETE)。现在如何在 android 中通过 cURL 发送 POST PUT GET DELETE 方法。和使用httppost发送一样吗?或者如何将 cURL 发送到 android 中的 rest 服务?
问问题
9506 次
2 回答
2
使用HttpClient,您可以发送 POST、PUT、GET、DELETE 请求。对于示例 POST 请求,请查看此处。
于 2012-12-03T12:12:46.393 回答
2
public void postData() {
// Create a new HttpClient and Post Header
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost("http://www.yoursite.com/script.php");
try {
// Add your data
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(2);
nameValuePairs.add(new BasicNameValuePair("id", "12345"));
nameValuePairs.add(new BasicNameValuePair("stringdata", "AndDev is Cool!"));
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
// Execute HTTP Post Request
HttpResponse response = httpclient.execute(httppost);
} catch (ClientProtocolException e) {
// TODO Auto-generated catch block
} catch (IOException e) {
// TODO Auto-generated catch block
}
}
// Newventuresmarket.com // Steven Koelsche` 谢谢布拉克。如果 cURL 需要,您可能还需要调整标题...
try {
httppost.setHeader("Content-Type", "application/json");
httppost.setHeader("Accept", "application/json");
于 2013-06-14T21:58:10.237 回答