OpenFileOutput()方法未定义!

时间:2010-10-25 14:52:12

标签: android local-storage

首先,我在Main Activity中编写了一些方法,但我认为它们应该是一个类。

这是我的代码... openFileOutput和openFileInput是未定义的。任何的想法??也许它应该是服务或活动...... ??

    package spexco.hus.system;

    import java.io.FileInputStream;
    import java.io.FileNotFoundException;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.util.Date;
    import spexco.hus.cepvizyon.CepVizyon;
    import android.content.Context;

    public class LicenseIDB {
    private String PHONECODEFILE = "CepVizyonCode";
    private static String PhoneCode = null;

    public LicenseIDB() {
    if (readLocal(PHONECODEFILE, 8) == null)
        createSystemCode();
}

public static long getDate() {
    Date currentTime = new Date();
    return currentTime.getTime();
}

public void createSystemCode() {
    long date = getDate();
    String str = Integer.toHexString(Integer.MAX_VALUE - (int) date);
    for (int i = str.length(); i < 8; i++) {
        str += "" + i;
    }
    PhoneCode = str.substring(0, 8);
    saveLocal(PhoneCode, PHONECODEFILE);

}

public static String getPhoneCode() {

    return PhoneCode;
}

public void saveLocal(String fileString, String Adress) {

    try {
        FileOutputStream fos = openFileOutput(Adress, Context.MODE_PRIVATE);
        fos.write(fileString.getBytes());
        fos.close();
    } catch (FileNotFoundException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
}

public String readLocal(String Adress, int lenght) {
    byte[] buffer = new byte[lenght];
    String str = new String();
    try {
        FileInputStream fis = openFileInput(Adress);
        fis.read(buffer);
        fis.close();
        str = new String(buffer);
    } catch (FileNotFoundException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }

    return str;
}

}

2 个答案:

答案 0 :(得分:32)

这些是Context类定义的方法,而不是类中定义的方法。当您的代码属于Activity时,它可以在其Activity基类中使用便捷方法openFileInput()来访问基础Context.getApplicationContext().openFileInput()(同样适用于openFileOutput() })。

现在,您必须使用对基础Context方法的直接调用来替换它们。

答案 1 :(得分:11)

替换

FileOutputStream fos = openFileOutput(Adress, Context.MODE_PRIVATE);

以下行

FileOutputStream fos = getApplicationContext().openFileOutput(filename, getActivity().MODE_PRIVATE);

如果在Fragment中使用

FileOutputStream fos =getActivity().openFileOutput(filename, getActivity().MODE_PRIVATE);