可以在 SurfaceView 中使用 OutputStreamWriter 吗?

发布于 2024-11-05 21:40:53 字数 285 浏览 0 评论 0原文

我想从 SurfaceView 将高分写入文件。这可能吗? 我有这段代码:

OutputStreamWriter out = new OutputStreamWriter(
                        openFileOutput("highscore.txt",0));

但它告诉我,“BoardView”类型的方法 openFileOutput(string, int) 未定义(boardview 是我的 Surfaceview)

有什么建议吗?

I would like to write a highscore out to a file from a SurfaceView. Is this possible?
I have this piece of code:

OutputStreamWriter out = new OutputStreamWriter(
                        openFileOutput("highscore.txt",0));

But it tells me that the method openFileOutput(string, int) is undefined for the type "BoardView" (boardview is my surfaceview)

Any suggestions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我偏爱纯白色 2024-11-12 21:40:53

openFileOutputcontext 的一种方法,因此您应该向表面视图传递一个上下文(例如您的 Activity),并将其用作 yourActivityObject.openFileOutput("highscore. txt",0) 使用此方法。

openFileOutput is a method of context, so you should pass your surface view a context (your activity for example) and use it as yourActivityObject.openFileOutput("highscore.txt",0) to use this method.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文