您当前的位置:首页 > 计算机 > 编程开发 > 安卓(android)开发

Android Base64加密解密

时间:02-12来源:作者:点击数:

// 加密传入的数据是byte类型的,并非使用decode方法将原始数据转二进制,String类型的数据 使用 str.getBytes()即可

String str = “Hello!”;

// 在这里使用的是encode方式,返回的是byte类型加密数据,可使用new String转为String类型

String strBase64 = new String(Base64.encode(str.getBytes(), Base64.DEFAULT));

Log.i(“Test”, “encode >>>” + strBase64);

// 这里 encodeToString 则直接将返回String类型的加密数据

String enToStr = Base64.encodeToString(str.getBytes(), Base64.DEFAULT);

Log.i(“Test”, “encodeToString >>> ” + enToStr);

// 对base64加密后的数据进行解密

Log.i(“Test”, “decode >>>” + new String(Base64.decode(strBase64.getBytes(), Base64.DEFAULT)));

方便获取更多学习、工作、生活信息请关注本站微信公众号城东书院 微信服务号城东书院 微信订阅号
推荐内容
相关内容
栏目更新
栏目热门