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


120

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

就像这样简单:

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

如何用Java做到这一点?

Answers:


225

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 <8

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 <8)

如果您在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"

29

用:

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

编码转换为Base64

您需要从项目中引用Commons编解码器,以使该代码起作用。

对于java8

import java.util.Base64

21
Base64类的编码/解码方法是静态的,因此您无需创建新对象。然后:byte [] data = Base64.decode(base64str); 足够。
Ernesto Campohermoso

15

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

import android.util.Base64

...

Base64.encodeToString(bytes, Base64.DEFAULT);

7

如果您碰巧将Spring框架与java一起使用,则有一种简单的方法。

  1. 导入以下内容。

    导入org.springframework.util.Base64Utils;
  2. 像这样转换。

    byte [] bytearr = {0,1,2,3,4};
    字符串encodingText = Base64Utils.encodeToString(bytearr);
    

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

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.