这是我的Application#onCreate方法。我可以从MainActivity访问sessions.json,但是当从Application#onCreate方法访问同一文件时,它会抛出FileNotFoundException。
@Override
public void onCreate() {
super.onCreate();
try {
FileInputStream fileInputStream = this.openFileInput("sessions.json");
} catch (FileNotFoundException e) {
e.printStackTrace();
}