gpt4 book ai didi

android - ContextWrapper 中的 NullPointer 异常

转载 作者:太空狗 更新时间:2023-10-29 14:31:28 26 4
gpt4 key购买 nike

我有一个名为 FileGeneration 的类,它扩展了 Activity
在 FileGeneration 中我有一个方法叫做

protected OutputStream openAndWriteFile() {

// Set the Context-mode
int cxt = Context.MODE_PRIVATE;

// Check if we are not going to clear the file and the file exists
if (!clearFile && (new File(this.fileName)).exists()) {

// Append to the file
cxt = Context.MODE_APPEND;
}

// Try to open the file to write to
try {

// Open the File using the Context
this.os = openFileOutput(this.fileName, cxt);

} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}

// Return the OutputStream
return this.os;
}

然后我在 Logcat 中得到这个输出

06-08 15:31:43.733: ERROR/AndroidRuntime(2850): java.lang.NullPointerException
06-08 15:31:43.733: ERROR/AndroidRuntime(2850): at android.content.ContextWrapper.openFileOutput(ContextWrapper.java:158)
06-08 15:31:43.733: ERROR/AndroidRuntime(2850): at android.content.ContextWrapper.openFileOutput(ContextWrapper.java:158)
06-08 15:31:43.733: ERROR/AndroidRuntime(2850): at dataconnection.FileGeneration.openAndWriteFile(FileGeneration.java:278)

类中第278行是

this.os = openFileOutput(this.fileName, cxt);

但是当我在 Logcat 中打印带有参数的方法时,它说

openFileOutput(Preferences.xml, 1);

该文件不存在,但是 openFileOutput 说如果不存在它会创建它

有什么问题吗?

最佳答案

我用 (new ContextWrapper(ctx)).openFileOutput(this.fileName, cxt) 解决了这个问题

关于android - ContextWrapper 中的 NullPointer 异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6282313/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com