¿Es posible recuperar el mensaje de MD5 y Java? [cerrado]

tengo el siguiente código.

String plaintext = "HelloWorld";
MessageDigest m = MessageDigest.getInstance("MD5");
m.reset();
m.update(plaintext.getBytes());
byte[] digest = m.digest();
BigInteger bigInt = new BigInteger(1,digest);
String hashtext = bigInt.toString(16); 

// Now we need to zero pad it if you actually want the full 32 chars.
while(hashtext.length() < 32 ){
    hashtext = "0"+hashtext;            
}

Ahora quiero volver a convertirlo a la cadena original. ¿Es posible?

Respuestas a la pregunta(1)

Su respuesta a la pregunta