php - 如何使用 android 中的 volley 库将数据保存到 mysql?

标签 php android mysql android-volley

我尝试使用来自 localhost 的 volley 库将数据保存到 mysql 数据库中。当我尝试获取 json 并将一些数据添加到 mysql 时出现错误,不幸的是应用程序停止了。显示错误:Java.NullPointerException 在此行

Controller.getInstance().addToReqQueue(request);

这是我的代码:

public class MainActivity extends AppCompatActivity {

    EditText firstname, lastname, age;
    Button insert, show;
    TextView result;
    String insertUrl = "http://192.168.56.1/android_post_api/insertStudent.php";
    String showUrl = "http://192.168.56.1/android_post_api/show.php";

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        firstname = (EditText) findViewById(R.id.editText);
        lastname = (EditText) findViewById(R.id.editText2);
        age = (EditText) findViewById(R.id.editText3);
        insert = (Button) findViewById(R.id.insert);
        show = (Button) findViewById(R.id.showstudents);
        result = (TextView) findViewById(R.id.textView);
        show.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                System.out.println("ww");
                JsonObjectRequest jsonObjectRequest = new JsonObjectRequest(Request.Method.POST,
                        showUrl, new Response.Listener<JSONObject>() {
                    @Override
                    public void onResponse(JSONObject response) {
                        System.out.println(response.toString());
                        try {
                            JSONArray students = response.getJSONArray("students");
                            for (int i = 0; i < students.length(); i++) {
                                JSONObject student = students.getJSONObject(i);

                                String firstname = student.getString("firstname");
                                String lastname = student.getString("lastname");
                                String age = student.getString("age");

                                result.append(firstname + " " + lastname + " " + age + " \n");
                            }
                            result.append("===\n");

                        } catch (JSONException e) {
                            e.printStackTrace();
                        }

                    }
                }, new Response.ErrorListener() {
                    @Override
                    public void onErrorResponse(VolleyError error) {
                        System.out.append(error.getMessage());

                    }
                });
                Controller.getInstance().addToReqQueue(jsonObjectRequest);
            }
        });

        insert.setOnClickListener(new View.OnClickListener(){

            @Override
            public void onClick(View v) {
                StringRequest request = new StringRequest(Request.Method.POST, insertUrl, new Response.Listener<String>() {
                    @Override
                    public void onResponse(String response) {
                        System.out.println(response.toString());

                    }
                }, new Response.ErrorListener() {

                    @Override
                    public void onErrorResponse(VolleyError error) {

                    }
                }) {
                    @Override
                    protected Map<String, String> getParams() throws AuthFailureError {
                        Map<String,String> parameters = new HashMap<String, String>();
                        parameters.put("firstname",firstname.getText().toString());
                        parameters.put("lastname",lastname.getText().toString());
                        parameters.put("age",age.getText().toString());
                        return parameters;
                    }

                };
                Controller.getInstance().addToReqQueue(request);
            }
        });
    }
   }

最佳答案

你可以引用我下面的代码:

        JSONObject jsonBody;
        try {
            jsonBody = new JSONObject();
            jsonBody.put("Title", "Android Volley Demo");
            jsonBody.put("Author", "BNK");
            jsonBody.put("Date", "2015/09/06");
            mRequestBody = jsonBody.toString();

        StringRequest stringRequest = new StringRequest(Request.Method.POST, url, new Response.Listener<String>() {
            @Override
            public void onResponse(String response) {
                mTextView.setText(response);
            }
        }, new Response.ErrorListener() {
            @Override
            public void onErrorResponse(VolleyError error) {
                mTextView.setText(error.toString());
            }
        }) {
            @Override
            public String getBodyContentType() {
                return "application/json; charset=utf-8";
            }

            @Override
            public byte[] getBody() throws AuthFailureError {
                try {
                    return mRequestBody == null ? null : mRequestBody.getBytes("utf-8");
                } catch (UnsupportedEncodingException uee) {
                    VolleyLog.wtf("Unsupported Encoding while trying to get the bytes of %s using %s",
                            mRequestBody, "utf-8");
                    return null;
                }
            }
        };
        MySingleton.getInstance(this).addToRequestQueue(stringRequest);
    } catch (JSONException e) {
        e.printStackTrace();
    }

关于php - 如何使用 android 中的 volley 库将数据保存到 mysql?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32418516/

相关文章:

php - Laravel 5 方法 [ALL] 不存在

php - Facebook 创建事件

Java:将不同类型的数组相互排序

php - 我想从数据库中获取数据,不包括部分数据

php - 教义查询生成器 DATE_FORMAT 不工作

php - 使用自定义模板引擎如何用 php 替换内容

PHP 获取日期的当前月份

android - 使用 Nutiteq 为 Android 导入 .mbfiles 扩展文件

java.io.FileNotFoundException :/storage/emulated/0/Android/data/MyApplication/MyFile. ICS。 (没有这样的文件或目录)/Android Studio/Ical4j

php - 如何在cakephp中的另一个条件中使用条件