本文介绍了用Java / Groovy的Base64编码的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

什么是一个byte []转换成Java中一个Base64字符串的正确方法?更重要的是会的Grails / Groovy的,因为它告诉我,连接codeAsBase64()功能pcated德$ P $。在 sun.misc.BASE64En codeR 不建议使用包装和输出在某些Windows平台不同大小的字符串。

What is the proper way to convert a byte [] to a Base64 string in Java? Better yet would be Grails / Groovy because it tells me that the encodeAsBase64() function is deprecated. The sun.misc.BASE64Encoder package isn't recommended for use and outputs a different size string on some Windows platforms.

推荐答案

阿帕奇共同性有许多实用工具:

Apache Commons has many utilities:

二进制包:<一href=\"http://commons.apache.org/$c$cc/apidocs/org/apache/commons/$c$cc/binary/Base64.html\">http://commons.apache.org/$c$cc/apidocs/org/apache/commons/$c$cc/binary/Base64.html

下载地址:
<一href=\"http://commons.apache.org/$c$cc/download_$c$cc.cgi\">http://commons.apache.org/$c$cc/download_$c$cc.cgi

这篇关于用Java / Groovy的Base64编码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-30 13:59