我正在将1-10之间的随机数保存到文本文件中,并且我想将文本文件中最后保存的数字显示在TextView中,以便用户可以看到它。

如何查找文本文件中最后保存的值?
有什么功能吗?

先感谢您!

最佳答案

为什么不使用sharedpreferences?

SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(app);
// get the current in value or 0 if it's not set
int anInt = preferences.getInt("MY_INT", 0 /* default value */);
// blah
// save the incremented int.
preferences.edit().putInt("MY_INT", anInt++).commit();

07-28 13:26