我在我的android项目中发送了这个http_post xml:
try {
xml_input();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
Log.e("Hiba!", "Xml_input fgv hivasa");
}
// TODO Auto-generated method stub
HttpPost httppost = new HttpPost("http://users.atw.hu/festivale/xml_post.php");
StringEntity se;
try {
se = new StringEntity(globalconstants.xml_out, HTTP.UTF_8);
se.setContentType("text/xml");
httppost.setHeader("Content-Type",
"application/soap+xml;charset=UTF-8");
httppost.setEntity(se);
HttpClient httpclient = new DefaultHttpClient();
BasicHttpResponse httpResponse = (BasicHttpResponse) httpclient
.execute(httppost);
HttpEntity r_entity = httpResponse.getEntity();
String xmlString = EntityUtils.toString(r_entity);
System.err.println("Error...." + xmlString);
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
答案 0 :(得分:1)
您可以使用php中的http_post
超全局关联数组访问$_POST
数据。象 -
echo $_POST['foo'];