-1

我在我的 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 发送吗?
4

1 回答 1

1

您可以使用php.ini 中的超全局关联数组访问http_post数据。$_POST喜欢-

echo $_POST['foo'];
于 2013-03-11T15:11:24.590 回答