如何在 Java 中将字节数组转换为 Base64?

Posted

技术标签:

【中文标题】如何在 Java 中将字节数组转换为 Base64?【英文标题】:How do I convert a byte array to Base64 in Java? 【发布时间】:2011-01-25 23:38:01 【问题描述】:

好的,我知道如何在 C# 中做到这一点。

很简单:

Convert.ToBase64String(byte[])
and Convert.FromBase64String(string) to get byte[] back.

如何在 Java 中做到这一点?

【问题讨论】:

【参考方案1】:

Java 8+

编码或解码字节数组:

byte[] encoded = Base64.getEncoder().encode("Hello".getBytes());
println(new String(encoded));   // Outputs "SGVsbG8="

byte[] decoded = Base64.getDecoder().decode(encoded);
println(new String(decoded))    // Outputs "Hello"

或者如果你只想要字符串:

String encoded = Base64.getEncoder().encodeToString("Hello".getBytes());
println(encoded);   // Outputs "SGVsbG8="

String decoded = new String(Base64.getDecoder().decode(encoded.getBytes()));
println(decoded)    // Outputs "Hello"

有关详细信息,请参阅Base64。

Java

Base64 不与低于 8 的 Java 版本捆绑。我建议使用 Apache Commons Codec。

对于直接字节数组:

Base64 codec = new Base64();
byte[] encoded = codec.encode("Hello".getBytes());
println(new String(encoded));   // Outputs "SGVsbG8="

byte[] decoded = codec.decode(encoded);
println(new String(decoded))    // Outputs "Hello"

或者如果你只想要字符串:

Base64 codec = new Base64();
String encoded = codec.encodeBase64String("Hello".getBytes());
println(encoded);   // Outputs "SGVsbG8="

String decoded = new String(codec.decodeBase64(encoded));
println(decoded)    // Outputs "Hello"

春天

如果您已经在从事 Spring 项目,您可能会发现他们的 org.springframework.util.Base64Utils 类更符合人体工程学:

对于直接字节数组:

byte[] encoded = Base64Utils.encode("Hello".getBytes());
println(new String(encoded))    // Outputs "SGVsbG8="

byte[] decoded = Base64Utils.decode(encoded);
println(new String(decoded))    // Outputs "Hello"

或者如果你只想要字符串:

String encoded = Base64Utils.encodeToString("Hello".getBytes());
println(encoded);   // Outputs "SGVsbG8="

String decoded = Base64Utils.decodeFromString(encoded);
println(new String(decoded))    // Outputs "Hello"

android(使用 Java

如果您使用的是 Java 8 之前的 Android SDK,那么您最好的选择是使用捆绑的 android.util.Base64

对于直接字节数组:

byte[] encoded = Base64.encode("Hello".getBytes());
println(new String(encoded))    // Outputs "SGVsbG8="

byte [] decoded = Base64.decode(encoded);
println(new String(decoded))    // Outputs "Hello"

或者如果你只想要字符串:

String encoded = Base64.encodeToString("Hello".getBytes());
println(encoded);   // Outputs "SGVsbG8="

String decoded = new String(Base64.decode(encoded));
println(decoded)    // Outputs "Hello"

【讨论】:

在 Android 上,encodeencodeToString 方法也需要一个 flags 参数,因此您需要使用 Base64.encode("Hello".getBytes(), Base64.DEFAULT);encodeToString 也是如此)。【参考方案2】:

用途:

byte[] data = Base64.encode(base64str);

编码转换为 Base64

您需要在项目中引用 commons codec 才能使该代码正常工作。

对于 java8

import java.util.Base64

【讨论】:

Base64 类的编码/解码方法是静态的,因此您不需要创建新对象。然后: byte [] data = Base64.decode(base64str);够了。【参考方案3】:

此外,对于我们的 Android 朋友(API 级别 8):

import android.util.Base64

...

Base64.encodeToString(bytes, Base64.DEFAULT);

【讨论】:

【参考方案4】:

如果您碰巧同时使用 Spring 框架和 java,有一个简单的方法。

    导入以下内容。

    导入 org.springframework.util.Base64Utils;

    像这样转换。

    字节 [] 字节泪 = 0,1,2,3,4; 字符串编码文本 = Base64Utils.encodeToString(bytearr);

    要解码,您可以使用 Base64Utils 类的 decodeToString 方法。

【讨论】:

以上是关于如何在 Java 中将字节数组转换为 Base64?的主要内容,如果未能解决你的问题,请参考以下文章

在swift和java中将字符串转换为base64字节数组给出不同的值

我们可以在 Java 中将字节数组转换为 InputStream 吗?

在 C# 中将 Base64 字节数组解码为图像

如何将base64位的字节数组转换成图片并显示

如何在 JavaScript 中使用字节数组将字符串转换为 base64 编码?

如何将图像的字节数组转换为表示 jpg 的 base64 编码字符串