我在本地主機中使用排氣連接,並在本地主機中有一個php文件。下面是我的課VolleyConnectionLogin和我也有一個凌空單身類(沒有錯誤)..在「返回檢查」時布爾檢查的值爲空
public class VolleyConnectionLogin {
Context context;
public VolleyConnectionLogin(Context context){
this.context = context;
}
static Boolean check;
public Boolean volleyConnection(final String username , final String password) {
String tag_string_req = "string_req";
String url = "http://192.168.10.8/login/forlogin.php";
StringRequest stringRequest = new StringRequest(Request.Method.POST,
url,
new Response.Listener<String>() {
@Override
public void onResponse(String response) {
Log.d(TAG, response.toString());
if(response.toString().equals("successful")){
check = true;
}else{
check = false;
}
}
}, new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
check = false;
VolleyLog.d(TAG, "Error: " + error.getMessage());
}
}) {
@Override
protected Map<String, String> getParams() {
Map<String, String> params = new HashMap<String, String>();
params.put("uname", username);
params.put("pword", password);
return params;
}
};
VolleySingleton.getInstance(context).addToRequestQueue(stringRequest);
return check;
}
}
'check'變量總是爲false,因爲您正在使用回調方法'onResponse'方法設置'check'變量的值。 –
使用false來初始化檢查,例如'static Boolean check = false;',因爲'Boolean'類型的默認值爲'null'。 –