文件读取问题

发布于 2024-12-12 21:02:40 字数 290 浏览 0 评论 0原文

我想在其他活动中读取文件,但我在其他活动中制作了它。我是这样做的:

FileOutputStream out = openFileOutput("config.txt", Context.MODE_PRIVATE);

但是像这样阅读:

FileInputStream fstream = new openFileInput("config.txt");

但这并没有识别“openFileInput”并要求创建另一个类或类似的东西。

i wanna read file in an other activity but i made it in another activity. I made it like this:

FileOutputStream out = openFileOutput("config.txt", Context.MODE_PRIVATE);

but reading like this:

FileInputStream fstream = new openFileInput("config.txt");

but this is not recognizing "openFileInput" and asking to make another class or something like this.

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

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

发布评论

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

评论(1

橘香 2024-12-19 21:02:40

删除new,您不是在创建新实例,而是在调用一个方法:

FileInputStream fstream = openFileInput("config.txt");

Drop the new, you're not creating a new instance, you're invoking a method:

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