Copie o código do código da seguinte forma:
classe pública MD5Check {
/**
* A combinação de string de senha padrão é usada para converter bytes em caracteres hexadecimais. O Apache usa essa combinação padrão para verificar a exatidão dos arquivos baixados.
*/
char protegido hexDigits[] = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a' , 'b', 'c', 'd', 'e', 'f' };
MessageDigest protegido messagedigest = null;
{
tentar {
mensagemdigest = MessageDigest.getInstance("MD5");
} catch (NoSuchAlgorithmException e) {
e.printStackTrace();
}
}
public String getFileMD5String (arquivo) lança IOException {
InputStreamfis;
fis = novo FileInputStream(arquivo);
byte[] buffer = novo byte[1024];
int numLeitura = 0;
while ((numRead = fis.read(buffer)) > 0) {
mensagemdigest.update(buffer, 0, numRead);
}
fis.close();
return bufferToHex(messagedigest.digest());
}
public String getFileMD5String (InputStream in) lança IOException {
byte[] buffer = novo byte[1024];
int numLeitura = 0;
while ((numLeitura = in.read(buffer)) > 0) {
mensagemdigest.update(buffer, 0, numRead);
}
in.close();
return bufferToHex(messagedigest.digest());
}
string privada bufferToHex(byte bytes[]) {
retornar bufferToHex (bytes, 0, bytes.length);
}
private String bufferToHex(byte bytes[], int m, int n) {
StringBuffer stringbuffer = new StringBuffer(2 * n);
int k = m + n;
for (int l = m; l < k; l++) {
anexarHexPair(bytes[l], stringbuffer);
}
retornar stringbuffer.toString();
}
private void appendHexPair(byte bt, StringBuffer stringbuffer) {
char c0 = hexDigits[(bt & 0xf0) >> 4];//Obtém a conversão digital dos 4 bits superiores no byte
// É um deslocamento lógico para a direita e os bits de sinal são deslocados para a direita juntos. Nenhuma diferença entre os dois símbolos é encontrada aqui.
char c1 = hexDigits[bt & 0xf]; // Obtém a conversão digital dos 4 bits inferiores no byte
stringbuffer.append(c0);
stringbuffer.append(c1);
}
}