1

我想请这里的人帮助我解决一个似乎有一个非常简单的解决方案的问题,但是,应用程序在模拟器中一次又一次地崩溃。

锻炼 -

创建一个包含三个活动的应用程序:
1.(主)第一个活动包括两个按钮,单击它们中的每一个都可以操作其他活动之一。
2. 第二个活动允许您输入客户信息:客户姓名,是否是男性/女性以及他的年龄并包括一个添加按钮 - 单击它会将客户添加到 ArrayList。当您退出活动时 - 您需要将所有客户 ArrayList 添加到文件中。
3. 第三个活动,允许用户查看现有客户总数 -> 从文件中读取的数据。

实现 Serializable 的“客户”类、“主”活动和“视图客户”活动都很容易编写。“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();
            }       
        }
    }



    }   

PS“OnPause”中的代码应该在内部存储中创建文件并使代码工作,至少在第二次运行时,但它没有。


  • 更新(由于对 LogCat 的请求)

这些是日志,
虽然第一个红色\错误行出现在按钮按下它假设(通过明确的意图)
从“ManuActivity”引导到“AddCustomerActivity”,
但随后应用程序崩溃了。

“AddCustomerActivity”开头显示的错误日志的链接:

(A部分)
http://tinypic.com/r/14brzgn/5

(B部分)
http://tinypic.com/r/12546qa/5

4

1 回答 1

0

你崩溃是由线路引起的

ois.close();

因为在这种情况下(当您仍然没有要读取的文件时),您从未初始化ois- 这意味着它是null. 我建议用一个简单的 if 包装它来解决这个问题:

try {
    if(ois != null) {
        ois.close();
    }
} catch(IOException e) {
...
于 2014-01-26T11:37:28.443 回答