Android在不使用数据库的情况下存储数据的方法
程序员文章站
2022-03-23 13:53:32
本文实例讲述了android在不使用数据库的情况下存储数据的方法。分享给大家供大家参考。具体分析如下:
在有些情况下我们不需要构建数据库,但是却要将一些数据保存起来,等到...
本文实例讲述了android在不使用数据库的情况下存储数据的方法。分享给大家供大家参考。具体分析如下:
在有些情况下我们不需要构建数据库,但是却要将一些数据保存起来,等到程序下次运行时调用,那么我们如何做呢?
1. 引用命名空间
import android.content.sharedpreferences;
2. 定义一个新类pictureglobaldef,用来存储数据,在该类中定义:
public final static string appsetting = "settingfile"; public final static string default_switch_mode_key="default_switch_mode"; public static boolean switch_open = false;
3. 在要引用数据switch_open 的地方:
sharedpreferences settingviewmode = getsharedpreferences( picturenoteglobaldef.appsetting, 0); boolean bswitch = settingviewmode.getboolean( picturenoteglobaldef.default_switch_mode_key , picturenoteglobaldef.switch_open );
4. 在要保存数据switch_open 的地方:
picturenoteglobaldef.switch_open = bswitch; sharedpreferences settingviewmode = getsharedpreferences(appsetting,0); sharedpreferences.editor editor = settingviewmode.edit(); editor.putboolean(picturenoteglobaldef.default_switch_mode_key , picturenoteglobaldef.switch_open ); editor.commit();
5. 读,写其他应用程序的sharedpreferences
有些时候,我们需要读写其他应用程序的sharedpreferences,这时应该怎么办呢?
读取其他应用程序的sharedpreferences关键是获得其他应用程序的context:
context tempcontext = null; tempcontext = createpackagecontext("a.b",context.context_ignore_security); //此处a.b表示该应用的包名
这样就获取了其他应用程序的context了
获取到context之后,就可以使用该context的getsharedpreferences方法获取shaerdpreferences对象,从而按照1-4的方法进行读写数据了。
希望本文所述对大家的android程序设计有所帮助。
推荐阅读
-
android之存储篇_SQLite数据库_让你彻底学会SQLite的使用
-
Android使用文件进行数据存储的方法
-
Android开发之使用SQLite存储数据的方法分析
-
在.NET Core类库中使用EF Core迁移数据库到SQL Server的方法
-
mysql为什么不推荐在大数据量的情况下使用join连接查询
-
在IntelliJ IDEA中使用Java连接MySQL数据库的方法详解
-
Android在不使用数据库的情况下存储数据的方法
-
在MySQL数据库中使用C执行SQL语句的方法_MySQL
-
在Django的视图中使用数据库查询的方法
-
android之存储篇_SQLite数据库_让你彻底学会SQLite的使用