本文介绍了sun.misc.BASE64Encoder / Decoder用于获取byte []的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试使用sun.misc.BASE64Encoder / Decoder,但此代码:
I am trying to use sun.misc.BASE64Encoder/Decoder, but this code:
(new sun.misc BASE64Encoder()).encode(new
sun.misc.BASE64Decoder().decodeBuffer("test string XML:"))
返回test / string / XML /
我很尴尬
returns "test/string/XML/"I am embarrassed
推荐答案
Don不要使用 sun.misc
或 com.sun
类。它们不能保证在不同版本的jre之间保持一致。
Don't use sun.misc
or com.sun
classes. They are not guaranteed to be consistent between different versions of the jre.
使用 Base64.encodeBase64(..)
和 Base64.decodeBase64(..)
这篇关于sun.misc.BASE64Encoder / Decoder用于获取byte []的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!