Base64: java.lang.IllegalArgumentException: Unzulässiges Zeichen
Ich versuche, nach der Benutzerregistrierung eine Bestätigungs-E-Mail zu senden. Zu diesem Zweck verwende ich die JavaMail-Bibliothek und die Java 8 Base64-Util-Klasse.
Ich verschlüssele Benutzer-E-Mails wie folgt:
byte[] encodedEmail = Base64.getUrlEncoder().encode(user.getEmail().getBytes(StandardCharsets.UTF_8));
Multipart multipart = new MimeMultipart();
InternetHeaders headers = new InternetHeaders();
headers.addHeader("Content-type", "text/html; charset=UTF-8");
String confirmLink = "Complete your registration by clicking on following"+ "\n<a href='" + confirmationURL + encodedEmail + "'>link</a>";
MimeBodyPart link = new MimeBodyPart(headers,
confirmLink.getBytes("UTF-8"));
multipart.addBodyPart(link);
woconfirmationURL
ist:
private final static String confirmationURL = "http://localhost:8080/project/controller?command=confirmRegistration&ID=";
Und dekodieren Sie dies dann in ConfirmRegistrationCommand wie folgt:
String encryptedEmail = request.getParameter("ID");
String decodedEmail = new String(Base64.getUrlDecoder().decode(encryptedEmail), StandardCharsets.UTF_8);
RepositoryFactory repositoryFactory = RepositoryFactory
.getFactoryByName(FactoryType.MYSQL_REPOSITORY_FACTORY);
UserRepository userRepository = repositoryFactory.getUserRepository();
User user = userRepository.find(decodedEmail);
if (user.getEmail().equals(decodedEmail)) {
user.setActiveStatus(true);
return Path.WELCOME_PAGE;
} else {
return Path.ERROR_PAGE;
}
Und wenn ich versuche zu dekodieren:
http://localhost:8080/project/controller?command=confirmRegistration&ID=[B@6499375d
Ich erhaltejava.lang.IllegalArgumentException: Illegal base64 character 5b
.
Ich habe versucht, einen einfachen Encode / Decoder (keine URLs) zu verwenden.
Gelöst:
Das Problem war das nächste - in der Zeile:
String confirmLink = "Complete your registration by clicking on following"+ "\n<a href='" + confirmationURL + encodedEmail + "'>link</a>";
Ich rufe toString in einem Array von Bytes auf, daher sollte ich Folgendes tun:
String encodedEmail = new String(Base64.getEncoder().encode(
user.getEmail().getBytes(StandardCharsets.UTF_8)));
Dank anJon Skeet und ByteHamster.