Java提供了多种方式来实现Base64编码,以下是三种常见的方式:
import java.util.Base64;
// 编码
String encodedString = Base64.getEncoder().encodeToString("Hello World".getBytes());
// 解码
byte[] decodedBytes = Base64.getDecoder().decode(encodedString);
String decodedString = new String(decodedBytes);
import org.apache.commons.codec.binary.Base64;
// 编码
String encodedString = Base64.encodeBase64String("Hello World".getBytes());
// 解码
byte[] decodedBytes = Base64.decodeBase64(encodedString);
String decodedString = new String(decodedBytes);
import org.bouncycastle.util.encoders.Base64;
// 编码
String encodedString = new String(Base64.encode("Hello World".getBytes()));
// 解码
byte[] decodedBytes = Base64.decode(encodedString);
String decodedString = new String(decodedBytes);
以上三种方式都可以实现Base64编码和解码,可以根据具体需求选择适合的方式。