I'm confused about this issue. Platform is on win7 java8.
Sample code:
String encryptedData = "0019ZfGO0nefTb2kIuHO0M3hGO09ZfGF";
Base64.Decoder decoder = Base64.getDecoder();
byte[] dataByte = decoder.decode(encryptedData);
System.out.println(dataByte);
dataByte = decoder.decode(encryptedData);
System.out.println(dataByte);
The output:
[B@15db9742
[B@6d06d69c
The exact input got different result. Don't know if there's anyway to clear the status and make the result consistent every time?
Thanks!