在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 sun.misc.BASE64Decoder;
import sun.misc.BASE64Encoder;
// 編碼
BASE64Encoder encoder = new BASE64Encoder();
String encodedString = encoder.encode("Hello World".getBytes());
// 解碼
BASE64Decoder decoder = new BASE64Decoder();
byte[] decodedBytes = decoder.decodeBuffer(encodedString);
String decodedString = new String(decodedBytes);
注意:在Java9中,sun.misc包被標記為不推薦使用,建議使用Java8的Base64類或Apache Commons Codec庫。