在Android中使用外部类从文件写入/读取?

时间:2013-11-01 04:30:02

标签: java android file

好的,这就是问题所在:

我正在尝试安装Android应用程序(联系应用程序)。我有3个课的问题。

  • 主页活动
  • 的ContactManager
  • ContactStore的

MainPage是Android应用程序中的MainActivity。 ContactManager是一个管理应用程序中所有联系人的类。此类接收保存在我创建的List(SortedList)中并发送到ContactStore类的联系信息。 ContactStore类有两个方法:addToFile和loadFromFile。该类从文件中写入和读取。

ContactManager类向ContactStore发送和接收列表。

ContactStore适用于java,但是对于android不起作用。

我不知道如何在ContactStore中访问android的内部存储或外部存储的位置。

以下是我的课程,其中包含重要的方法:

public class MainPage extends ListActivity {

private static ContactManager contactManager;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    //setContentView(R.layout.activity_page);


    contactManager = new ContactManager(this);

    setListAdapter(new MainPageAdapter(this));

}

ContactManager:

public class ContactManager {


private SortedList<Contact> contactList = new SortedArrayList<Contact>();

private ContactStore contactStore;

public ContactManager(Context context){
    super();
    this.contactStore = new ContactStore(context);
    this.readContacts();
}

/**
 * Add to ContactsList
 * @param firstName
 * @param lastName
 * @param cellPhone
 * @param workPhone
 * @param email
 */
public void addContact(String firstName, String lastName, String cellPhone, String workPhone, String email){
    contactList.add(new Contact(firstName, lastName, cellPhone, workPhone, email));

    contactStore.addToFile(this.contactList);
}

/**
 * Read from contact list
 * @return the contact list
 * @throws FileNotFoundException 
 */
public void readContacts(){
    this.contactList.clear();

    contactStore.loadFromFile(this);
}

和ContactStore类:

public class ContactStore {

private final File file = new File("Contacts.txt");


public ContactStore(Context context) {
    super();

}


public void addToFile(SortedList<Contact> contactList){

    try {

        file.createNewFile();

        PrintWriter out = new PrintWriter(file);

        try{
            for(int i=0;i<contactList.size();i++){
                out.println(contactList.get(i).toString());
            }
        }
        finally{
            out.close();
        }

    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
}

public void loadFromFile(ContactManager contactManager){

    try {
        Scanner in = new Scanner(file);
        try{
            while(in.hasNextLine()){
                String line = in.nextLine();
                String[] tokens = line.split(" ");
                contactManager.addContact(tokens[0], tokens[1], tokens[2], tokens[3], tokens[4]);

            }
        }
        finally{
            in.close();
        }

    } catch (FileNotFoundException e) {
        e.printStackTrace();
    }

}

}

我知道我必须给文件提供路径(内部或外部存储),但我不知道该怎么做,因为总是给我一个错误。如果您不明白,请告诉我。非常感谢,我希望你能帮助我。 ;)

1 个答案:

答案 0 :(得分:1)

外部存储(SD卡):

String root = Environment.getExternalStorageDirectory().getAbsolutePath();

内部存储:

String root = context.getFilesDir();

因此你的ContactStore类构造函数(因为你需要上下文):

private final File file;

public ContactStore(Context context) {
  super();
  String root = context.getFilesDir();
  file = new File(root + File.separator + "Contacts.txt");
}