【问题标题】:How to pass a value from android to php web service and retrieve it?如何将值从 android 传递到 php web 服务并检索它?
【发布时间】:2014-02-17 18:50:15
【问题描述】:

我正在尝试将值传递给我的 php 网络服务。我已经使用此代码传递“名称”值:

 private class MyAsyncTask extends AsyncTask<String, Void, Void> {

    protected Void doInBackground (String... params)
    {
            Intent intent = getIntent();
            String name = intent.getStringExtra("KEY_NAME");
            //HttpClient httpclient = new DefaultHttpClient();
            HttpPost httppost = new HttpPost("http://10.0.2.2/secure_login/get_data_user.php");

            List<NameValuePair> nameValuePair = new ArrayList<NameValuePair>(1);
            nameValuePair.add(new BasicNameValuePair("KEY_NAME", name));
            DefaultHttpClient hc = new DefaultHttpClient();
           // HttpResponse response = hc.execute(httppost);


            try {
                httppost.setEntity(new UrlEncodedFormEntity(nameValuePair));
            } catch (UnsupportedEncodingException e){
                // writing error to log
                e.printStackTrace();
            }

            try {
                HttpResponse response = hc.execute(httppost);
                HttpEntity entity = response.getEntity();
                InputStream inStream = entity.getContent();
                // writing response to log
                Log.d("Http Response:", response.toString());

               } catch (ClientProtocolException e) {
                   // writing exception to log
                   e.printStackTrace();
               } catch (IOException e) {
                   e.printStackTrace();
               }
            return null;



    }

还有这个,用于将 Stream 转换为 String。

          protected String convertStreamToString(InputStream inStream)
            {
               BufferedReader reader = new BufferedReader(new InputStreamReader(inStream));
               StringBuilder sb = new StringBuilder();

               String line = null;
               try 
               {
                   while ((line = reader.readLine()) != null) 
                   {
                       sb.append(line + "\n");
                   }
               } 
               catch (IOException e) 
               {
                   e.printStackTrace();
               } 
               finally 
               {
                   try 
                   {
                       inStream.close();
                   } 
                   catch (IOException e) 
                   {
                       e.printStackTrace();
                   }
               }
               return sb.toString();
            }
  }

但我只在 log cat 中得到了这个响应: org.apache.http.message.BasicHttpResponse@43e4c068

我需要传递“名称”值,以便我的 php 网络服务可以检索并执行如下查询:

 if (isset($_GET['name'])) {
$name = $_GET['name'];

require_once 'DB_Functions.php';
$db = new DB_Functions();
$result = mysql_query("SELECT name, email from users where name = '$name'");

我应该如何解决它?提前谢谢你。

【问题讨论】:

    标签: php android mysql web-services


    【解决方案1】:

    您正在 android 中发送一个 post 请求,并尝试使用 $_GET 在 PHP 中检索参数。

    尝试通过$_POST访问name变量:

    if (isset($_POST['name']))
        $name = mysql_real_escape_string($_POST['name']);
    
    require_once 'DB_Functions.php';
    $db = new DB_Functions();
    $result = mysql_query("SELECT name, email from users where name = '$name'");
    

    重要提示:在使用mysql_real_escape_string 将字符串放入 SQL 语句之前,不要忘记对字符串进行转义,以避免 SQL 注入。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2016-11-22
      • 1970-01-01
      • 1970-01-01
      • 2015-04-01
      • 1970-01-01
      相关资源
      最近更新 更多