We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
jdk9+移除了misc包下的base64编码与解码 涉及 com.central.common.utils.RsaUtils com.sso.demo.controller.ApiController 可以考虑以下方式兼容 Base64.Encoder encoder = Base64.getEncoder(); String encode = encoder.encodeToString(text2.getBytes());
Base64.Decoder decoder = Base64.getDecoder(); byte[] decode = decoder.decode(encodeValue2);
The text was updated successfully, but these errors were encountered:
thx建议,如果方便的话您可以直接提PR
Sorry, something went wrong.
No branches or pull requests
jdk9+移除了misc包下的base64编码与解码
涉及
com.central.common.utils.RsaUtils
com.sso.demo.controller.ApiController
可以考虑以下方式兼容
Base64.Encoder encoder = Base64.getEncoder();
String encode = encoder.encodeToString(text2.getBytes());
Base64.Decoder decoder = Base64.getDecoder();
byte[] decode = decoder.decode(encodeValue2);
The text was updated successfully, but these errors were encountered: