如何使用NeoMAD在指定文件夹上创建和写入文本文件

时间:2015-02-06 14:17:17

标签: mobile-application neomad

我需要在指定文件夹上创建文本文件并在其中写入数据

我试试这个,但它不起作用:

    file = new File(FileStorage.getPrivateDir(), "data");
    if (!file.exists()) {
        file.mkdirs();
    }else{
        fw=new  FileOutputStream(file);
        TextLabel sh=(TextLabel)findView(Res.id.ShFile);
        Person person;
        for(int i=0;i<persons.size();i++){
            person=(Person) persons.elementAt(i);
            sh.setText(person.getName()+" "+person.getNumberPhone());
            fw.write(Res.id.ShFile);  //public void write (int b)
        }

有什么例子可以帮助我吗?

1 个答案:

答案 0 :(得分:0)

你想要达到什么目的?将Person对象序列化为文件?

File和FileOutputStream类与JDK中的相同,但您需要自己序列化数据对象,例如使用DataOutputStream。像这样:

File file = new File(FileStorage.getPrivateDir(), "data");
DataOutputStream personStream = new DataOutputStream(new FileOutputStream(file));
personStream.writeUTF(person.getName());
personStream.writeInt(person.getAge());
personStream.flush();
personStream.close();