Android:如何将应用程序数据保存到手机内存中的文件中,然后将其检索回来?
我是android新手,正在尝试开发一些基本的短信应用程序。现在,我有两个字段,一个用于电话号码,另一个用于消息,我想将这些字段存储在一个文件中,当用户点击加载按钮时,我希望它弹回到相关字段中。 我尝试使用
fos.write (msg.getBytes());(fos = fileoutputstream),
但它似乎不起作用。
I am new to android and am trying to develop some basic SMS application. Now, I have two fields one for phone number and other for message, I would like to store these fields in a file and when a user hits the load button I want it to pop back in the respected fields.
I tried using
fos.write (msg.getBytes());(fos = fileoutputstream),
but it does not seem to work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
发布评论
评论(2)
ヅ她的身影、若隐若现2024-12-02 22:21:15
听起来您值得将其存储在数据存储中 - http://developer.android.com/guide/topics/data/data-storage.html 了解更多信息。
浏览记事本教程也可能会有所帮助:
http://developer.android.com/resources/tutorials/notepad/index.html
~没有更多了~
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
您应该为此使用共享首选项。
You should use shared preferences for that.