我有以下方法:
public static boolean getIsUp()
{
String method = "isup.php";
AsyncHttpResponseHandler response = new AsyncHttpResponseHandler(){
@Override
public void onSuccess(String content) {
if(Integer.parseInt(content) == IS_UP_CONTENT)
//code to return true
else
//code to return false
}
};
get(method, null, response);
}
您将如何填充 //code 以返回 true 和 //code 以返回 false 以便该方法返回适当的响应?这甚至可能吗?