Я просто пытаюсь использовать библиотеку MD5 в Java, но я получил некоторые ошибки,
когда я пытаюсь его скомпилировать, я получаю эту ошибку:
digest(byte[],int,int) in java.security.MessageDigest cannot be applied to (byte[])
Я пытаюсь скомпилировать его по wtk (j2me)
В чем проблема ?. спасибо
вот код
import java.io.FileInputStream;
import java.io.UnsupportedEncodingException;
import java.math.BigInteger;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
public class MD5 {
public static String getMD5(String input) {
try {
MessageDigest md = MessageDigest.getInstance("MD5");
byte[] messageDigest = md.digest(input.getBytes());
BigInteger number = new BigInteger(1, messageDigest);
String hashtext = number.toString(16);
// Now we need to zero pad it if you actually want the full 32 chars.
while (hashtext.length() < 32) {
hashtext = "0" + hashtext;
}
return hashtext;
}
catch (NoSuchAlgorithmException e) {
throw new RuntimeException(e);
}
}
public static void main(String[] args) throws NoSuchAlgorithmException {
System.out.println(getMD5("Javarmi.com"));
}
}