gpt4 book ai didi

java - 使用 SharedPreferences 保存字节数组

转载 作者:IT老高 更新时间:2023-10-28 20:43:15 27 4
gpt4 key购买 nike

所以我有一个 byte [] array 我在我的 android 应用程序中创建。我想使用来自 android 的 SharedPreferences 来存储它并在我启动我的应用程序时再次检索它。我怎样才能做到这一点 ?

最佳答案

您可以使用 android.util.Base64 在 SharedPreferences 中保存一个字节数组。

为了节省:

String saveThis = Base64.encodeToString(array, Base64.DEFAULT);

用于加载:

byte[] array = Base64.decode(stringFromSharedPrefs, Base64.DEFAULT);

关于java - 使用 SharedPreferences 保存字节数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19556433/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com