0

好的,这是问题:

我正在尝试做一个 Android 应用程序(联系人应用程序)。我有 3 节课的问题。

  • 主页活动
  • 联系人经理
  • 联系商店

MainPage 是 Android 应用程序中的 MainActivity。ContactManager 是一个管理应用程序中所有联系人的类。此类接收保存在我创建的列表 (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));

}

联系人管理器:

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();
    }

}

}

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

4

1 回答 1

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");
}
于 2013-11-01T10:32:39.520 回答