我正在尝试在 java 中将字节数组转换为 base64 格式。
我的问题是 sun.misc.BASE64Decoder 不能使用?有没有其他选择?
byte[] buf = new byte[] { 0x12, 0x23 };
String s = new sun.misc.BASE64Encoder().encode(buf);
我正在尝试在 java 中将字节数组转换为 base64 格式。
我的问题是 sun.misc.BASE64Decoder 不能使用?有没有其他选择?
byte[] buf = new byte[] { 0x12, 0x23 };
String s = new sun.misc.BASE64Encoder().encode(buf);