如何在HarmonyOS应用中实现数据的本地存储与读取?


HarmonyOS
2025-03-24 16:09:16
浏览
收藏 0
回答 2
待解决
回答 2
按赞同
/
按时间
知识浅谈

以下是相关的案例,望采纳,谢谢!

在 HarmonyOS 应用中,可以使用多种方式实现数据的本地存储与读取,常见的方法包括使用 PreferencesSQLite 数据库文件存储。以下是每种方法的详细介绍和示例代码:

1. 使用 Preferences 存储简单数据 Preferences 适合存储简单的键值对数据,例如用户设置、配置信息等。

示例代码

import ohos.data.preferences.Preferences;
import ohos.data.preferences.PreferencesHelper;

// 获取 Preferences 实例
Preferences preferences = PreferencesHelper.getPreferences(this);

// 写入数据
preferences.putString("key", "value");
preferences.putInt("age", 25);
preferences.putBoolean("isMarried", false);

// 读取数据
String value = preferences.getString("key", "default_value");
int age = preferences.getInt("age", 0);
boolean isMarried = preferences.getBoolean("isMarried", false);
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.

2. 使用 SQLite 数据库存储结构化数据 SQLite 是一种轻量级的嵌入式数据库,适合存储结构化的数据,例如用户信息、订单记录等。

示例代码

  1. 创建数据库和表
import ohos.data.rdb.*;
import ohos.data.rdb.values.BlobValue;
import ohos.data.rdb.values.StringValue;
import ohos.data.rdb.values.IntegerValue;

public class MyDatabaseHelper extends RdbStoreCallback {
    private static final String DB_NAME = "myDatabase.db";
    private static final int DB_VERSION = 1;
    private static final String TABLE_NAME = "users";

    @Override
    public void onCreate(RdbStore rdbStore) {
        // 创建表
        String createTable = "CREATE TABLE " + TABLE_NAME + " (" +
                "id INTEGER PRIMARY KEY AUTOINCREMENT, " +
                "name TEXT NOT NULL, " +
                "age INTEGER)";
        rdbStore.execSQL(createTable);
    }

    @Override
    public void onUpgrade(RdbStore rdbStore, int oldVersion, int newVersion) {
        // 升级数据库版本时的操作
        String dropTable = "DROP TABLE IF EXISTS " + TABLE_NAME;
        rdbStore.execSQL(dropTable);
        onCreate(rdbStore);
    }

    public static RdbStore getRdbStore(Context context) {
        RdbPredicates predicates = new RdbPredicates(TABLE_NAME);
        RdbStoreConfig config = new RdbStoreConfig(context, DB_NAME);
        return RdbStoreFactory.createRdbStore(context, config, DB_VERSION, new MyDatabaseHelper());
    }
}
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26.
  • 27.
  • 28.
  • 29.
  • 30.
  • 31.
  • 32.
  • 33.
  • 34.
  1. 插入数据
RdbStore rdbStore = MyDatabaseHelper.getRdbStore(this);
ContentValues values = new ContentValues();
values.put("name", "John Doe");
values.put("age", 30);
rdbStore.insert(TABLE_NAME, values);
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  1. 查询数据
RdbPredicates predicates = new RdbPredicates(TABLE_NAME);
ResultSet resultSet = rdbStore.query(predicates);
while (resultSet.goToNextRow()) {
    int id = resultSet.getInt(resultSet.getColumnIndexForName("id"));
    String name = resultSet.getString(resultSet.getColumnIndexForName("name"));
    int age = resultSet.getInt(resultSet.getColumnIndexForName("age"));
    // 处理数据
}
resultSet.close();
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.

3. 使用文件存储 文件存储适合存储较大的数据,例如日志文件、图片、视频等。

示例代码

  1. 写入文件
import ohos.data.fileio.File;
import ohos.data.fileio.FileIO;
import ohos.data.fileio.FilePath;

FilePath filePath = new FilePath("/data/local/tmp/example.txt");
File file = new File(filePath);
FileIO fileIO = new FileIO(file, "w");
fileIO.write("Hello, HarmonyOS!".getBytes());
fileIO.close();
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  1. 读取文件
FilePath filePath = new FilePath("/data/local/tmp/example.txt");
File file = new File(filePath);
FileIO fileIO = new FileIO(file, "r");
byte[] buffer = new byte[1024];
int bytesRead = fileIO.read(buffer);
String content = new String(buffer, 0, bytesRead);
fileIO.close();
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.

总结

  • Preferences:适合存储简单的键值对数据,如用户设置。
  • SQLite 数据库:适合存储结构化的数据,如用户信息、订单记录。
  • 文件存储:适合存储较大的数据,如日志文件、图片、视频。

根据你的需求选择合适的存储方式,可以实现高效的数据存储与读取。

分享
微博
QQ
微信
回复
2025-03-24 22:23:43
申公豹CTO

LocalStorage:ArkTS 为构建页面级别状态变量提供存储的内存内 “数据库”。LocalStorage是页面级的UI状态存储,通过@Entry装饰器接收的参数可以在页面内共享同一个LocalStorage实例。LocalStorage支持UIAbility实例内多个页面间状态共享。

参考官方文档:​LocalStorage:页面级UI状态存储-管理应用拥有的状态-状态管理(V1)-状态管理-学习ArkTS语言-基础入门 - 华为HarmonyOS开发者​

分享
微博
QQ
微信
回复
9天前
相关问题
HarmonyOS应用如何实现数据存储
120浏览 • 2回复 已解决
如何实现应用数据持久化存储
3075浏览 • 1回复 待解决
HarmonyOS 本地存储数据用什么?
993浏览 • 1回复 待解决
如何读取本地/预制数据库?
1911浏览 • 1回复 待解决
本地service本地应用如何传递消息
6177浏览 • 1回复 待解决
鸿蒙next 如何读取本地json文件
87浏览 • 0回复 待解决