文件读取问题
我想在其他活动中读取文件,但我在其他活动中制作了它。我是这样做的:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
删除
new
,您不是在创建新实例,而是在调用一个方法:Drop the
new
, you're not creating a new instance, you're invoking a method: