Android POST总是空的

时间:2017-03-21 15:15:50

标签: php android database

当我尝试从我的Android应用程序发送内容时,我的POST总是空的。我的目标是从我的Android应用程序发送pdf到数据库,但这是一个完全不同的问题。我认为我的链接错了,但我不确定。现在我想发布两个变量并显示其中一个,下一步是将其中一个保存在数据库中,但我想在婴儿步骤中解决这个问题。

我忘记添加的是当我尝试将其保存在数据库中时,结果如下。 Database

Android应用

 hwName.text = "test"

我的Kundenexecute.php

  try {

            HttpClient httpclient = new DefaultHttpClient();
            HttpPost httppost = new HttpPost("http://mywebsite.at/kundenexecute.php");

            try {
                // Add your data
                List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(2);
                nameValuePairs.add(new BasicNameValuePair("id", "12345"));
                nameValuePairs.add(new BasicNameValuePair("stringdata", "Hi"));
                httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));

                // Execute HTTP Post Request
                HttpResponse response = httpclient.execute(httppost);

            } catch (ClientProtocolException e) {
                // TODO Auto-generated catch block
            } catch (IOException e) {
                // TODO Auto-generated catch block
            }

0 个答案:

没有答案