Android:抛出IllegalStateException

时间:2015-10-01 16:32:00

标签: java android illegalstateexception

在LoginActivity.java类中,当用户单击注册按钮时,代码会将登录会话设置为true,然后将活动从LoginActivity切换到MainActivity。这是登录代码段。

            case(R.id.login):
                String email = etEmail.getText().toString();
                String password = etPassword.getText().toString();

                if(email.trim().length() > 0 && password.trim().length() > 0) {
                    loginManager.checkLogin(email, password);
                    pDialog.setMessage("Logging in..");
                    showDialog();
                    session.setLogin(true);

                    if(loginManager.isLoginSuccessful()) {
                        hideDialog();
                        Toast.makeText(this, getResources().getString(R.string.welcome_msg), Toast.LENGTH_LONG).show();
                        Intent intent = new Intent(this, MainActivity.class);
                        startActivity(intent);
                        overridePendingTransition(R.anim.slide_in_right, R.anim.slide_out_left);
                        finish();
                    } else {
                        Toast.makeText(this, loginManager.getErrorMessage(), Toast.LENGTH_LONG).show();
                    }

                } else if(email.trim().length() < 1) {
                    Toast.makeText(this, "Please enter the email", Toast.LENGTH_SHORT).show();
                } else {
                    Toast.makeText(this, "Please enter the password", Toast.LENGTH_SHORT).show();
                }
                break;

这是处理登录过程的LoginManager.java文件。我使用OkHttp作为HTTP库。

public class LoginManager {
    private final String TAG_LOGIN = LoginManager.class.getSimpleName();
    private OkHttpClient client = new OkHttpClient();
    private final String loginURL = URL.getInstance().getUrlLogin();
    private Request request = new Request.Builder().url(loginURL).build();

    private static JSONObject jsonObject;
    private boolean error;

    public void checkLogin(final String email, final String password) {

        client.newCall(request).enqueue(new Callback() {

            // onFailure is called when the request could not be executed due to cancellation, a connectivity problem or timeout.
            @Override
            public void onFailure(Request request, IOException e) {

            }

            // onResponse is called when the HTTP response was successfully returned by the remote server.
            // using POST request for login
            @Override
            public void onResponse(Response response) throws IOException {
                Log.d(TAG_LOGIN, "Login response: " + response.body().string());
                RequestBody body = new FormEncodingBuilder()
                        .add("tag", "login")
                        .add("email", email)
                        .add("password", password)
                        .build();
                Request request = new Request.Builder().url(loginURL).post(body).build();
                client.newCall(request).execute();

                try {
                    jsonObject = new JSONObject(response.body().string());
                    error = jsonObject.getBoolean("error");
                } catch(JSONException e) {
                    e.printStackTrace();
                }
            }
        });
    }

    public boolean isLoginSuccessful() {
        if(error) {
            return false;
        }
        return true;
    }

    public String getErrorMessage() {
        String errorMessage = null;
        try {
            jsonObject.getString("error_msg");
        } catch(JSONException e) {
            e.printStackTrace();
        }

        return errorMessage;
    }
}

当我运行应用程序时,它显示欢迎的toast消息并突然退出并显示以下错误日志。

java.lang.IllegalStateException: closed
            at com.squareup.okhttp.internal.http.HttpConnection$FixedLengthSource.read(HttpConnection.java:454)
            at okio.Buffer.writeAll(Buffer.java:574)
            at okio.RealBufferedSource.readByteArray(RealBufferedSource.java:87)
            at com.squareup.okhttp.ResponseBody.bytes(ResponseBody.java:56)
            at com.squareup.okhttp.ResponseBody.string(ResponseBody.java:82)
            at com.marshall.thequizshow.application.http.LoginManager$1.onResponse(LoginManager.java:51)
            at com.squareup.okhttp.Call$AsyncCall.execute(Call.java:150)
            at com.squareup.okhttp.internal.NamedRunnable.run(NamedRunnable.java:33)
            at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1112)
            at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:587)
            at java.lang.Thread.run(Thread.java:841)

所以,我必须在LoginManager.java文件中的onResponse方法下遇到try-catch短语的错误。

try {
                    jsonObject = new JSONObject(response.body().string());
                    error = jsonObject.getBoolean("error");
                } catch(JSONException e) {
                    e.printStackTrace();
                }

我想问你应该如何修复代码,以便它不再捕获IllegalStateException。

提前谢谢。

2 个答案:

答案 0 :(得分:7)

作为一般答案,YES:避免RuntimeException的正确方法是修复代码:在正常情况下,它们不应被程序捕获。

现在,让我们看看你的情况...... response.body()出现了,因为HttpConnection似乎在尝试使用它时被关闭了。可能是因为您正在调用方法/path/to/release/的两倍?

答案 1 :(得分:-2)

在错误的时间调用方法时抛出IllegalState异常。检查流程的性质,然后重新构建代码以在适当的时间拨打电话

相关问题