求大神帮忙看看: Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'boolean androi

日志报错:E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.newsClient.activity, PID: 4422
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.newsClient.activity/com.newsClient.activity.LoginActivity}: java.lang.NullPointerException: Attempt to invoke virtual method ‘boolean android.widget.Button.post(java.lang.Runnable)’ on a null object reference
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2325)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2387)
at android.app.ActivityThread.access 800 ( A c t i v i t y T h r e a d . j a v a : 151 ) a t a n d r o i d . a p p . A c t i v i t y T h r e a d 800(ActivityThread.java:151) at android.app.ActivityThread 800(ActivityThread.java:151)atandroid.app.ActivityThreadH.handleMessage(ActivityThread.java:1303)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:135)
at android.app.ActivityThread.main(ActivityThread.java:5254)
at java.lang.reflect.Method.invoke(Native Method)
at java.lang.reflect.Method.invoke(Method.java:372)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:903)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:698)
Caused by: java.lang.NullPointerException: Attempt to invoke virtual method ‘boolean android.widget.Button.post(java.lang.Runnable)’ on a null object reference
at com.newsClient.activity.LoginActivity.initLogin(LoginActivity.java:196)
at com.newsClient.activity.LoginActivity.onCreate(LoginActivity.java:109)

at android.app.Activity.performCreate(Activity.java:5990)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1106)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2278)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2387)
at android.app.ActivityThread.access 800 ( A c t i v i t y T h r e a d . j a v a : 151 ) a t a n d r o i d . a p p . A c t i v i t y T h r e a d 800(ActivityThread.java:151) at android.app.ActivityThread 800(ActivityThread.java:151)atandroid.app.ActivityThreadH.handleMessage(ActivityThread.java:1303)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:135)
at android.app.ActivityThread.main(ActivityThread.java:5254)
at java.lang.reflect.Method.invoke(Native Method)
at java.lang.reflect.Method.invoke(Method.java:372)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:903)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:698)

这里贴上源代码:
package com.newsClient.activity;

import java.util.ArrayList;
import java.util.List;

import org.json.JSONObject;

import android.app.Activity;
import android.app.ProgressDialog;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.content.SharedPreferences.Editor;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.CompoundButton;
import android.widget.CompoundButton.OnCheckedChangeListener;
import android.widget.EditText;
import android.widget.Toast;

import com.newsClient.encoder.AESEncryptor;
import com.newsClient.model.Parameter;
import com.newsClient.service.SyncHttp;

public class LoginActivity extends Activity implements OnClickListener{

private Button registerButton;

private Button loginButton;

private Button returnButton;

//账号文本框
private EditText accountEditText;
//密码文本框
private EditText passwordEditText;

//账号
private String account;
//密码
private String password;

private String accountValue;
private String passwordValue;

//进度条
private ProgressDialog pd = null;

//记住账号的CheckBox
private CheckBox savedAccountCheckBox;
//自动登录的CheckBox
private CheckBox autoLoginCheckBox;

//SharePreferences对象,用于记住账号
private SharedPreferences sp;

//记住账号的标志常数
private final String MAK = "innoview";


@SuppressWarnings("deprecation")
@Override
protected void onCreate(Bundle savedInstanceState) {
	super.onCreate(savedInstanceState);
	setContentView(R.layout.activity_login);
	
	//账号的文本框
	accountEditText = (EditText)this.findViewById(R.id.et_account);
	//密码的文本框
	passwordEditText = (EditText)this.findViewById(R.id.et_password);
	//保存账号的CheckBox
	savedAccountCheckBox = (CheckBox)findViewById(R.id.cb_savedAccount);
	//自动登录的CheckBox
	autoLoginCheckBox = (CheckBox)findViewById(R.id.cb_autoLogin);
	//获取保存在SharePreferences里面的账号信息,实现自动登录
	sp = getSharedPreferences("accountInfo",Context.MODE_WORLD_READABLE);
	
	if(sp.getBoolean("ISCHECK", false)){
		
		savedAccountCheckBox.setChecked(true);
		
		try{
			 accountValue = sp.getString("ACCOUNTVALUE","");
			 System.out.println("<<<<<<<<<<<<"+"加密后的账号"+accountValue);
             account= AESEncryptor.decrypt(MAK, accountValue);
             System.out.println("<<<<<<<<<<<<"+"解密后的账号"+account);
		}catch (Exception e) {
			// TODO: handle exception
		}
		
		accountEditText.setText(account);
		
		try{
			 passwordValue = sp.getString("PASSWORDVALUE","");
			 System.out.println("<<<<<<<<<<<<"+"加密后的密码"+passwordValue);
            password= AESEncryptor.decrypt(MAK, passwordValue);
            System.out.println("<<<<<<<<<<<<"+"解密后的密码"+password);
		}catch (Exception e) {
			// TODO: handle exception
		}
		
		passwordEditText.setText(password);
		
		if(sp.getBoolean("AUTO_ISCHECK", false)){
			 autoLoginCheckBox.setChecked(true);
			 initLogin();//***==报错的第一处==***
	    }
	}
	
	savedAccountCheckBox.setOnCheckedChangeListener(new OnCheckedChangeListener() {
		public void onCheckedChanged(CompoundButton buttonView,boolean isChecked) {
		if (savedAccountCheckBox.isChecked()) {
		                     
			System.out.println("记住账号框未选中状态");
			sp.edit().putBoolean("ISCHECK", true).commit();

		}else {

			System.out.println("记住账号框未选中");
			sp.edit().putBoolean("ISCHECK", false).commit();

		}

		}
	});
	
	autoLoginCheckBox.setOnCheckedChangeListener(new OnCheckedChangeListener() {
        public void onCheckedChanged(CompoundButton buttonView,boolean isChecked) {
        	if (autoLoginCheckBox.isChecked()) {
        		System.out.println("自动登录功能以启用");
        		sp.edit().putBoolean("AUTO_ISCHECK", true).commit();

        	} else {
        		System.out.println("自动登录已关闭");
        		sp.edit().putBoolean("AUTO_ISCHECK", false).commit();
        	}
        }
	});
	
	initView();
}

/**
 * 初始化View
 */
public void initView(){
	registerButton = (Button)findViewById(R.id.bt_register);
	registerButton.setOnClickListener(this);
	
	loginButton = (Button)findViewById(R.id.bt_login);
	loginButton.setOnClickListener(this);
	
	returnButton = (Button)findViewById(R.id.btn_black);
	returnButton.setOnClickListener(this);
}

/**
 * 登录验证
 */
public void initLogin(){
	//显示进度条
	pd = new ProgressDialog(this);
	pd.setProgressStyle(ProgressDialog.STYLE_SPINNER);
	pd.setMessage("数据加载...");
	pd.show();
	
	account = accountEditText.getText().toString();
	password = passwordEditText.getText().toString();
	
	if(savedAccountCheckBox.isChecked())
	{
	 
	 Editor editor = sp.edit();

	    try {
            editor.putString("ACCOUNTVALUE", AESEncryptor.encrypt(MAK,account));
	        System.out.println("<<<<<<<<"+"加密后的账号"+AESEncryptor.encrypt(MAK,account));
	    } catch (Exception e) {
	        Toast.makeText(LoginActivity.this,"账号加密异常",Toast.LENGTH_SHORT).show();
	        e.printStackTrace();  //To change body of catch statement use File | Settings | File Templates.
	    }
	    
	    try {
            editor.putString("PASSWORDVALUE", AESEncryptor.encrypt(MAK,password));
	        System.out.println("<<<<<<<<"+"加密后的密码"+AESEncryptor.encrypt(MAK,password));
	    } catch (Exception e) {
	        Toast.makeText(LoginActivity.this,"密码加密异常",Toast.LENGTH_SHORT).show();
	        e.printStackTrace();  //To change body of catch statement use File | Settings | File Templates.
	    }
	    
	   editor.commit();
	}
	loginButton.post(new LoginThread());//***==报错的第二处==***
}

@Override
public void onClick(View v) {
	switch (v.getId()) {
	case R.id.bt_login:
		initLogin();
		break;

	case R.id.bt_register:
		Intent intent = new Intent(LoginActivity.this,RegisterActivity.class);
		startActivity(intent); 
		break;
	
	case R.id.btn_black:
		LoginActivity.this.finish();
		break;
		
	default:
		break;
	}
}
/**
 * 实现登录验证的线程
 */
public class LoginThread extends Thread{
	
	@Override
	public void run() {
		super.run();
		//同步加载的类
		SyncHttp  syncHttp = new SyncHttp();
		//接收登录验证的请求链接
		String url = "http://192.168.1.6:8080/old_newsService/LoginServlet";
		//数组列表
		List<Parameter> params = new ArrayList<Parameter>();
		params.add(new Parameter("account",account));
		params.add(new Parameter("password",password));
		try{
			//获取返回的数据
			String retStr = syncHttp.httpPost(url, params);
			//JSONObject类
			JSONObject jsonObject = new JSONObject(retStr);
			int retCode = jsonObject.getInt("ret");
			//请求成功
			if(0 == retCode){
				Toast.makeText(getApplicationContext(), "登录成功!", 1000).show();
				Intent intent = new Intent(LoginActivity.this,MainActivity.class);
				//intent.putExtra("account", account);
				startActivity(intent);
				LoginActivity.this.finish();
			}
			
		}catch (Exception e) {
			// TODO: handle exception
		}
		
		Toast.makeText(getApplicationContext(), "账号密码不正确!", 1000).show();
		pd.dismiss();
	}
}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值