16

首先,我在 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;
}

}

4

2 回答 2

35

这些是在Context类中定义的方法,而不是在您的类中定义的方法。当您的代码是Activity的一部分时,它可以使用其基类中的便捷方法openFileInput()Activity来访问底层的Context.getApplicationContext().openFileInput()(类似 for openFileOutput())。

现在,您必须用直接调用底层Context方法来替换那些。

于 2010-10-25T15:03:53.963 回答
12

代替

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

下线

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

如果在 Fragment 内部使用

FileOutputStream fos =getActivity().openFileOutput(filename, getActivity().MODE_PRIVATE);
于 2014-01-04T12:30:34.557 回答