我想用 XML 内容类型编写请求的正文,但我不知道如何使用 HttpClient 对象(http://hc.apache.org/httpclient-3.x/apidocs/index.html)
DefaultHttpClient httpClient = new DefaultHttpClient();
HttpPost httpRequest = new HttpPost(this.url);
httpRequest.setHeader("Content-Type", "application/xml");
而且我不知道如何继续用我的 XML 编写正文...