如何在Android Studio中将所有联系人发送到Mysql

时间:2019-06-02 10:41:54

标签: java php android android-volley android-contacts

我想将所有联系人发送到android studio中的mysql。

我使用此代码在while循环中获取联系人:

ContentResolver cr = getContentResolver();
        Cursor cur = cr.query(ContactsContract.Contacts.CONTENT_URI,
                null, null, null, null);
        if (cur.getCount() > 0) {
            while (cur.moveToNext()) {
                String id = cur.getString(cur.getColumnIndex(ContactsContract.Contacts._ID));
                if (Integer.parseInt(cur.getString(
                        cur.getColumnIndex(ContactsContract.Contacts.HAS_PHONE_NUMBER))) > 0) {
                    Cursor pCur = cr.query(
                            ContactsContract.CommonDataKinds.Phone.CONTENT_URI,
                            null,
                            ContactsContract.CommonDataKinds.Phone.CONTACT_ID +" = ?",
                            new String[]{id}, null);
                    while (pCur.moveToNext()) {
                        name = cur.getString(cur.getColumnIndex(ContactsContract.Contacts.DISPLAY_NAME));
                        phoneNo = pCur.getString(pCur.getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER));
                            HttpPOSTRequestWithParameters();
                    }
                    pCur.close();
                }
            }
        }

并使用此volly代码将name和phoneNo的字符串发布到服务器:

public void HttpPOSTRequestWithParameters() {
    RequestQueue queue = Volley.newRequestQueue(this);
    String url = "http://www.example.com/index.php";
    StringRequest postRequest = new StringRequest(Request.Method.POST, url,
            new Response.Listener<String>()
            {
                @Override
                public void onResponse(String response) {
                }
            },
            new Response.ErrorListener()
            {
                @Override
                public void onErrorResponse(VolleyError error) {
                }
            }
    ) {
        @Override
        protected Map<String, String> getParams()
        {
            Map<String, String> params = new HashMap<String, String>();
            params.put("name", name);
            params.put("phone", phoneNo);
            return params;
        }
    };
    queue.add(postRequest);
}

此代码对少量联系人有效,但是当联系人数量很高时,它们不会发出以下警告:

E / Volley:[13335] BasicNetwork.performRequest:意外的响应代码503

我认为服务器的响应率很低,而while循环遇到了麻烦。 也就是说,在接收到服务器端的响应之前,它将下一方循环发送到服务器端,这导致了一些数字将无法发送的问题。

我的问题是,有什么方法可以优化上面的代码? 还是将所有联系人的姓名和电话号码放在一个数组中,并由服务器端请求发送?

0 个答案:

没有答案