2

ファイルを文字列に変換してから mdf に変換するために使用している関数は以下のとおりです。すべてがクールであることを確認するために、ファイル パスとファイル名を出力しています。ファイル(実際にはビデオmp4)のフィンガープリントを変更できるとは考えていませんか?ubuntuのmd5sumに対してチェックしています。

private static String readFileToString(String filePath)
        throws java.io.IOException{

            StringBuffer fileData = new StringBuffer(1000);
            BufferedReader reader = new BufferedReader(
                    new FileReader(filePath));
            char[] buf = new char[1024];

            int numRead=0;
            while((numRead=reader.read(buf)) != -1){
                String readData = String.valueOf(buf, 0, numRead);
                fileData.append(readData);
                buf = new char[1024];
            }

            reader.close();
            System.out.println(fileData.toString());
            return fileData.toString();
        }

public static String getMD5EncryptedString(String encTarget){
  MessageDigest mdEnc = null;
  try {
      mdEnc = MessageDigest.getInstance("MD5");
  } catch (NoSuchAlgorithmException e) {
      System.out.println("Exception while encrypting to md5");
      e.printStackTrace();
  } // Encryption algorithm
  mdEnc.update(encTarget.getBytes(), 0, encTarget.length());
  String md5 = new BigInteger(1, mdEnc.digest()).toString(16) ;
  return md5;
}
4

2 に答える 2

3

ここでこの回答を見つけました: How to generate an MD5 checksum for a file in Android?

public static String fileToMD5(String filePath) {
InputStream inputStream = null;
try {
    inputStream = new FileInputStream(filePath);
    byte[] buffer = new byte[1024];
    MessageDigest digest = MessageDigest.getInstance("MD5");
    int numRead = 0;
    while (numRead != -1) {
        numRead = inputStream.read(buffer);
        if (numRead > 0)
            digest.update(buffer, 0, numRead);
    }
    byte [] md5Bytes = digest.digest();
    return convertHashToString(md5Bytes);
} catch (Exception e) {
    return null;
} finally {
    if (inputStream != null) {
        try {
            inputStream.close();
        } catch (Exception e) { }
    }
}
}

private static String convertHashToString(byte[] md5Bytes) {
String returnVal = "";
for (int i = 0; i < md5Bytes.length; i++) {
    returnVal += Integer.toString(( md5Bytes[i] & 0xff ) + 0x100, 16).substring(1);
}
return returnVal;
}
于 2013-07-20T05:36:57.860 に答える