167168169170171172173174175176177
try { md5 = new MD5Sum(); md5.setFile( getFile() ); md5.execute(); actualChecksum = FileUtils.fileRead( checksumFile.getCanonicalPath() ); actualChecksum = actualChecksum.substring( 0, actualChecksum.length() - 1 ); } catch ( Exception e )
168169170171172173174175176177178