web-dev-qa-db-ja.com

Base64:Java.lang.IllegalArgumentException:不正な文字

ユーザー登録後に確認メールを送信しようとしています。この目的でJavaMailライブラリとJava 8 Base64 utilクラスを使用しています。

私は次の方法でユーザーのメールをエンコードしています:

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

ここで、confirmationURLは次のとおりです。

private final static String confirmationURL = "http://localhost:8080/project/controller?command=confirmRegistration&ID=";

そして、次のような方法でConfirmRegistrationCommandでこれをデコードします:

    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;
    }

そして、私がデコードしようとしているとき:

http://localhost:8080/project/controller?command=confirmRegistration&ID=[B@6499375d

Java.lang.IllegalArgumentException: Illegal base64 character 5bを取得しています。

基本的なエンコード/デコーダー(URLのものではない)を使用しようとしましたが、成功しませんでした。

解決しよう:

問題は次でした-行で:

 String confirmLink = "Complete your registration by clicking on following"+ "\n<a href='" + confirmationURL + encodedEmail + "'>link</a>";

バイト配列でtoStringを呼び出しているため、次のことを行う必要があります。

String encodedEmail = new String(Base64.getEncoder().encode(
                user.getEmail().getBytes(StandardCharsets.UTF_8)));

Jon SkeetおよびByteHamsterに感謝します。

22
marknorkin

エンコードされたテキストは[B@6499375dです。これはBase64ではなく、エンコードの間に何か問題が発生しました。そのデコードコードは良さそうです。

次のコードを使用して、byte []をURLに追加する前に文字列に変換します。

String encodedEmailString = new String(encodedEmail, "UTF-8");
// ...
String confirmLink = "Complete your registration by clicking on following"
    + "\n<a href='" + confirmationURL + encodedEmailString + "'>link</a>";
19
ByteHamster

エンコードされた画像がdata:image/png;base64,iVBORw0...で始まったため、このエラーが発生しました。

この答え 私は解決策に導いた:

String partSeparator = ",";
if (data.contains(partSeparator) {
  String encodedImg = data.split(partSeparator)[1];
  byte[] decodedImg = Base64.getDecoder().decode(encodedImg.getBytes(StandardCharsets.UTF_8));
  Path destinationFile = Paths.get("/path/to/imageDir", "myImage.jpg");
  Files.write(destinationFile, decodedImg);
}
11
Matthias Braun

これを解決するには、次のコードを使用してください。

JsonObject obj = Json.createReader(new ByteArrayInputStream(Base64.getDecoder().decode(accessToken.split("\\.")[1].
                        replace('-', '+').replace('_', '/')))).readObject();

上記のコードでreplace('-', '+').replace('_', '/')は仕事をしました。詳細については、 https://jwt.io/js/jwt.js を参照してください。そのリンクから取得したコードの一部から問題を理解しました:

function url_base64_decode(str) {
  var output = str.replace(/-/g, '+').replace(/_/g, '/');
  switch (output.length % 4) {
    case 0:
      break;
    case 2:
      output += '==';
      break;
    case 3:
      output += '=';
      break;
    default:
      throw 'Illegal base64url string!';
  }
  var result = window.atob(output); //polifyll https://github.com/davidchambers/Base64.js
  try{
    return decodeURIComponent(escape(result));
  } catch (err) {
    return result;
  }
}
2
Esakkiappan .E

Base64.Encoder.encodeToStringメソッドは、ISO-8859-1文字セットを自動的に使用します。

私が書いている暗号化ユーティリティでは、暗号化テキストの入力文字列を取得し、Base64でエンコードして送信し、その後プロセスを逆にしました。関連する部品を以下に示します。 注:JVMの呼び出し時にfile.encodingプロパティがISO-8859-1に設定されるため、ベアリングも含まれる場合があります。

static String getBase64EncodedCipherText(String cipherText) {
    byte[] cText = cipherText.getBytes();
    // return an ISO-8859-1 encoded String
    return Base64.getEncoder().encodeToString(cText);
}

static String getBase64DecodedCipherText(String encodedCipherText) throws IOException {
    return new String((Base64.getDecoder().decode(encodedCipherText)));
}

public static void main(String[] args) {
    try {
        String cText = getRawCipherText(null, "Hello World of Encryption...");

        System.out.println("Text to encrypt/encode: Hello World of Encryption...");
        // This output is a simple sanity check to display that the text
        // has indeed been converted to a cipher text which 
        // is unreadable by all but the most intelligent of programmers.
        // It is absolutely inhuman of me to do such a thing, but I am a
        // rebel and cannot be trusted in any way.  Please look away.
        System.out.println("RAW CIPHER TEXT: " + cText);
        cText = getBase64EncodedCipherText(cText);
        System.out.println("BASE64 ENCODED: " + cText);
        // There he goes again!!
        System.out.println("BASE64 DECODED:  " + getBase64DecodedCipherText(cText));
        System.out.println("DECODED CIPHER TEXT: " + decodeRawCipherText(null, getBase64DecodedCipherText(cText)));
    } catch (Exception e) {
        e.printStackTrace();
    }

}

出力は次のようになります。

Text to encrypt/encode: Hello World of Encryption...
RAW CIPHER TEXT: q$;�C�l��<8��U���X[7l
BASE64 ENCODED: HnEPJDuhQ+qDbInUCzw4gx0VDqtVwef+WFs3bA==
BASE64 DECODED:  q$;�C�l��<8��U���X[7l``
DECODED CIPHER TEXT: Hello World of Encryption...
1
guitarpicva

Linux Jenkinsスレーブでこのエラーが発生しました。ノードを「既知のホストファイル検証戦略」から「非検証検証戦略」に変更することで修正しました。

0
twasbrillig