我在我的 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();
}
- 我怎样才能在我的 php 网站上显示这个?
- 如果我想要一些规则等发送到服务器,这是一个很好的 xml 发送吗?