我希望有人在这里帮助我一个似乎有一个非常简单的解决方案的问题但是,应用程序在模拟器中一次又一次地崩溃。
创建包含三项活动的应用程序:
的 1。 (主要)第一项活动包括点击每项活动的两个按钮
经营其他活动之一
的 2。第二个活动允许您输入客户信息:
客户名称,无论是男性/女性还是他的年龄
并包含一个要添加的按钮 - 单击它会将Customer添加到ArrayList。
当您退出活动时 - 您需要将所有客户ArrayList添加到文件中
第3。第三项活动,允许用户查看现有客户的总数 - >从文件中读取的数据。
实现Serializable的“Cusomer”类, “主要”活动和“ViewCustomers”活动都很容易编写。 “AddCustomer”活动导致应用程序崩溃。 请告诉我,为什么应用程序会根据以下代码(恼人的)第二个活动反复崩溃:
import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.*;
import java.io.*;
import java.util.ArrayList;
public class AddCustomerActivity extends Activity {
static final String CUSTOMERSFILE="customers";
ArrayList<Customer> customers;
EditText name, age;
CheckBox male;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.addcustomerscreen);
name=(EditText)findViewById(R.id.nameText);
age=(EditText)findViewById(R.id.ageText);
male=(CheckBox)findViewById(R.id.maleCheckBox);
Button add=(Button)findViewById(R.id.addcustomerbutton);
FileInputStream fis;
ObjectInputStream ois=null;
try {
fis=openFileInput(CUSTOMERSFILE);
ois=new ObjectInputStream(fis);
customers=(ArrayList<Customer>)ois.readObject();
if(customers==null)
customers=new ArrayList<Customer>();
}
catch(ClassNotFoundException ex)
{
Log.e("add customers","serialization problem",ex);
}
catch(IOException ex)
{
Log.e("add customers","No customers file",ex);
customers=new ArrayList<Customer>();
}
finally
{
try {
ois.close();
} catch (IOException e) {
e.printStackTrace();
}
}
add.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String theName=name.getText().toString();
int theAge=Integer.parseInt(age.getText().toString());
boolean isMale=male.isChecked();
customers.add(new Customer(theName, theAge, isMale));
name.setText("");
age.setText("");
}
});
}
@Override
protected void onPause() {
super.onPause();
FileOutputStream fos;
ObjectOutputStream ous=null;
try {
fos=openFileOutput(CUSTOMERSFILE, Activity.MODE_PRIVATE);
ous=new ObjectOutputStream(fos);
ous.writeObject(customers);
}
catch(IOException ex)
{
Log.e("add customers","some problem",ex);
}
finally
{
try {
ous.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
P.S。 “OnPause”中的代码应该在内部存储中创建文件 并使代码工作,至少在第二次运行中,但事实并非如此。
这些是日志,
当第一个红色\错误线出现在按下按钮时,该按钮被假定为领导(通过明确的意图)
从“ManuActivity”到“AddCustomerActivity”,
但随后应用程序崩溃了。
链接到“AddCustomerActivity”开头显示的错误日志:
答案 0 :(得分:0)
你的崩溃是由行
引起的ois.close();
因为在这种情况下(当你还没有要阅读的文件时),你从未初始化ois
- 这意味着它是null
。
我建议用简单的if:
try {
if(ois != null) {
ois.close();
}
} catch(IOException e) {
...