gpt4 book ai didi

java - "Cannot resolve method ' openFileOutput(Java.lang.String, int) '"

转载 作者:太空宇宙 更新时间:2023-11-03 12:17:56 24 4
gpt4 key购买 nike

我正在创建一个类,其中包含一些从文件读取/写入的函数。

String FILENAME = "my_file";
FileOutputStream fos;

public void write(String text, Context ctx)
{
fos = openFileOutput(FILENAME, ctx.MODE_PRIVATE);
try {
fos.write(text.getBytes());
} catch (IOException e) {
e.printStackTrace();
}
}

但是在 openFileOutput 上我收到错误“无法解析方法‘openFileOutput(Java.lang.String, int)’”

我该如何解决?

最佳答案

使用 ctx 访问 noraml 类中的 openFileOutput 方法,它没有扩展 Context 类的任何子类:

fos = ctx.openFileOutput(FILENAME, ctx.MODE_PRIVATE);

因为 openFileOutput在 Context 类中定义

关于java - "Cannot resolve method ' openFileOutput(Java.lang.String, int) '",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28242386/

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