web-dev-qa-db-ja.com

BASE64Encoderは内部APIであり、将来のリリースで削除される可能性があります

私はこの問題を解決しようとしましたが、自分に役立つ解決策を見つけることはできませんでした。問題は、BASE64Encoderに関する警告を受けていることです。 BASE64Encoderなしでこれを行う他の方法はありますか?

コード:

public static String Encrypt(String Data) throws Exception 
{
    Key key = generateKey();
    Cipher c = Cipher.getInstance(ALGO);
    c.init(Cipher.ENCRYPT_MODE, key);
    byte[] encVal = c.doFinal(Data.getBytes());
    String encryptedValue = new BASE64Encoder().encode(encVal); //Here is the problem

    return encryptedValue;
}

public static String Decrypt(String encryptedData) throws Exception 
{
    Key key = generateKey();
    Cipher c = Cipher.getInstance(ALGO);
    c.init(Cipher.DECRYPT_MODE, key);
    byte[] decordedValue = new BASE64Decoder().decodeBuffer(encryptedData); //Another problem
    byte[] decValue = c.doFinal(decordedValue);
    String decryptedValue = new String(decValue);

    return decryptedValue;
}

private static Key generateKey() throws Exception 
{
    Key key = new SecretKeySpec(keyValue, ALGO);
    return key;
}
11
Tomáš

これで、Base64エンコーダークラスとデコーダークラスを使用しているはずです(Java 8以降))。

https://docs.Oracle.com/javase/8/docs/api/Java/util/Base64.html

import Java.util.Base64;
import Java.util.UUID;
import Java.io.UnsupportedEncodingException;

public class HelloWorld {
   public static void main(final String... args) {
      try {
         // Encode using basic encoder
         String base64encodedString = Base64.getEncoder().encodeToString("TutorialsPoint?java8".getBytes("utf-8"));
         System.out.println("Base64 Encoded String (Basic) :" + base64encodedString);

         // Decode
         byte[] base64decodedBytes = Base64.getDecoder().decode(base64encodedString);

         System.out.println("Original String: " + new String(base64decodedBytes, "utf-8"));
         base64encodedString = Base64.getUrlEncoder().encodeToString("TutorialsPoint?java8".getBytes("utf-8"));
         System.out.println("Base64 Encoded String (URL) :" + base64encodedString);

         StringBuilder stringBuilder = new StringBuilder();

         for (int i = 0; i < 10; ++i) {
            stringBuilder.append(UUID.randomUUID().toString());
         }

         byte[] mimeBytes = stringBuilder.toString().getBytes("utf-8");
         String mimeEncodedString = Base64.getMimeEncoder().encodeToString(mimeBytes);
         System.out.println("Base64 Encoded String (MIME) :" + mimeEncodedString);

      } catch (UnsupportedEncodingException e) {
         System.out.println("Error :" + e.getMessage());
      }
   }
}

[〜#〜]ここ[〜#〜] から取得したコード。

16
ManoDestra