VolleyPlus : NetworkDispatcher.run: Unhandled exception java.lang.NullPointerException

前端 未结 4 723
春和景丽
春和景丽 2021-01-18 01:09

I am trying to run below code:

Map requestMap = new HashMap<>();
Long unixTime = System.currentTimeMillis() / LONG_1000;
requestM         


        
4条回答
  •  囚心锁ツ
    2021-01-18 02:11

    I encountered this problem because cidEDTValue was null.

    {
        @Override
        protected Map getParams() throws AuthFailureError {
            Map params = new HashMap<>();
            params.put("CID", cidEDTValue);
            return params;
        }
    }
    

提交回复
热议问题