如何将字符串转换为 GZIP Base64 字符串?
我一直在尝试弄清楚如何使用 GZIPOutputStream 等,但在理解它们方面没有成功。我想做的就是将一串字符 - “一串字符”转换为 GZIP Base64 格式。我该怎么做?
通过 GZIP Base64 格式,我的意思是首先使用 GZIP 压缩字符串,然后转换为 Base64。
I've been trying to figure out using GZIPOutputStream
's and the like but have had no success with understanding them. All I want to do is convert a string of characters - "A string of characters" into a GZIP Base64 format. How can I do this?
By GZIP Base64 format, I mean the string is first compressed using GZIP, then converted into Base64.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用 Apache Commons 编解码器
Base64OutputStream
。下面是一个示例类:
输出:
在 Linux 下,您可以确认这适用于:(
请注意,在 OSX 上,您应该使用
base64 -D
而不是base64 -d
在上面的命令中)输出:
Use the Apache Commons Codec
Base64OutputStream
.Here's a sample class:
Which outputs:
Under Linux, you can confirm this works with:
(Please note that on OSX, you should use
base64 -D
instead ofbase64 -d
in the above command)Which outputs:
Java 9
Base64
< /a> - 自:1.8readAllBytes
- 自:1.9GZIPInputStream
和GZIPOutputStream
- 自:1.1示例:
另请参阅:编码为 Base64 Java
Java 9
Base64
- Since: 1.8readAllBytes
- Since: 1.9GZIPInputStream
andGZIPOutputStream
- Since: 1.1Example:
See also: Encoding as Base64 in Java
这是此答案的变体,但没有弃用的内容并使用 Vavr
Try
:This is a variation of this answer but without the deprecated stuff and using Vavr
Try
: