Android:如何将应用程序数据保存到手机内存中的文件中,然后将其检索回来?

发布于 11-25 22:21 字数 208 浏览 2 评论 0原文

我是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 技术交流群。

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

发布评论

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

评论(2

地狱即天堂2024-12-02 22:21:15

现在,我有两个字段,一个用于电话号码,另一个用于消息,我想将这些字段存储在一个文件中,当用户点击加载按钮时,我希望它弹回到相关字段中。

您应该为此使用共享首选项

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.

You should use shared preferences for that.

听起来您值得将其存储在数据存储中 - http://developer.android.com/guide/topics/data/data-storage.html 了解更多信息。

浏览记事本教程也可能会有所帮助:
http://developer.android.com/resources/tutorials/notepad/index.html

It sounds like it would be worthwhile for you to store it in a datastore-- http://developer.android.com/guide/topics/data/data-storage.html for more info.

It might also be helpful to walk through the Notepad tutorial:
http://developer.android.com/resources/tutorials/notepad/index.html

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