-1

私のAndroidプロジェクトでこのhttp_postxmlを送信しています:

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のスーパーグローバル連想配列http_postを使用してデータにアクセスできます。$_POST好き-

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