如何将java字符串数组发送到php?使用排球(Android)

时间:2018-03-08 14:12:20

标签: php android arrays

我正在尝试将以下数据发送到我的php,但如果我放了多个s1变量,程序会崩溃。

Java代码:

    //my java code goes here
        @Override
    protected Map<String, String> getParams() throws AuthFailureError {
        Map<String, String> params = new HashMap<>();
            params.put("s1",max[0]);
            params.put("s1",max[1]);
            params.put("s1",max[3]);
        return params;
    }

PHP代码:

    //my php code goes here
        <?php
     $con = mysqli_connect('localhost','myuser','mypass');
     mysqli_select_db($con,'mydb');

     $checked = $_POST["s1"];

     $SQL = "INSERT INTO TABLE VALUES ('$checked[0]','$checked[1]','$checked[2]')";
     mysqli_query($con,$SQL);
    ?>

3 个答案:

答案 0 :(得分:4)

Map只能存储一个键和一个值,不允许重复键,所以简而言之,你只是发送一个值并尝试使用索引获取多个值(不存在)因此异常

解决方案:使用不同的密钥并使用服务器上的这些密钥获取值或发送整个数组

要发送整个数组,只需创建JSONObjectJSONArray请求而不是String

答案 1 :(得分:0)

有我的例子:

public void todo(String value, String value2)
    {
        StringRequest stringRequest = new StringRequest(Request.Method.POST, "https://adress.com/script.php", new Response.Listener<String>() {
            @Override
            public void onResponse(String response) {
                //response
                Log.d("Response", response);

            }
        },
                new Response.ErrorListener() {
                    @Override
                    public void onErrorResponse(VolleyError error) {

                        error.printStackTrace();
                    }
                }
        ){
            @Override
            protected Map<String, String> getParams()
            {


                Map<String, String> params = new HashMap<String, String>();
                params.put("s1", value1);
                params.put("s2", value2);

                return params;
            }
        };
        MySingleton.getInstance(this).addToRequestque(stringRequest);
    }

MySingleton.java:

public class MySingleton {

    private  static MySingleton mInstance;
    private RequestQueue requestQueue;
    private static Context mCtx;
    private MySingleton(Context context)
    {
        mCtx = context;
        requestQueue = getRequestQueue();
    }

    public RequestQueue getRequestQueue()
    {
        if(requestQueue==null)
        {
            requestQueue = Volley.newRequestQueue(mCtx.getApplicationContext());
        }
        return requestQueue;
    }

    public static synchronized MySingleton getInstance(Context context)
    {

        if (mInstance==null)
        {
            mInstance = new MySingleton(context);
        }
        return mInstance;

    }

    public <T>void addToRequestque(Request<T> request)
    {
        requestQueue.add(request);
    }
}

答案 2 :(得分:0)

我认为这会生成一个像

这样的查询字符串

?s1=A&s1=B&s1=C

这将导致s1的每个值覆盖最后一个,s1将包含'C',而不是数组。

如果你想让s1成为一个数组,你需要使用s1 []作为标签,所以它会生成一个像

这样的查询字符串

?s1[]=A&s1[]=B&s1[]=C

那么你的Java就是:

  params.put("s1[]",max[0]);
  params.put("s1[]",max[1]);
  params.put("s1[]",max[3]);

但是,这真的非常重要,如果您的PHP页面以任何方式向公众公开(即使不是您),您也不会在将它们打开SQL注入攻击之前逃避发布的值应该仍然防范这一点)看看http://php.net/manual/en/mysqli.real-escape-string.php