SharedPreferences 存储对象

本文详细探讨了Android中的SharedPreferences存储机制,包括如何存储和读取基本数据类型,对象序列化,以及最佳实践和注意事项。通过实例展示了SharedPreferences在实际应用中的使用,帮助开发者更好地理解和运用这一持久化数据的方法。
摘要由CSDN通过智能技术生成



public static String oToBase64String(Object o) throws Exception {
		// 创建字节输出流
		ByteArrayOutputStream baos = new ByteArrayOutputStream();
		// 创建对象输出流,并封装字节流
		ObjectOutputStream oos = new ObjectOutputStream(baos);
		// 将对象写入字节流
		oos.writeObject(o);
		// 将字节流编码成base64的字符窜
		return new String(SSOBase64.encode(baos.toByteArray()));
	}
	
	public static Object base64StringToo(String base64String) throws Exception {
		// 读取字节
		byte[] base64 = SSOBase64.decode(base64String.getBytes());
		// 封装到字节流
		ByteArrayInputStream bais = new ByteArrayInputStream(base64);
		// 再次封装
		ObjectInputStream bis = new ObjectInputStream(bais);
		// 读取对象
		return bis.readObject();
	}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值