public class ChecksumFile extends Object
Constructor and Description |
---|
ChecksumFile() |
Modifier and Type | Method and Description |
---|---|
File |
createChecksum(File referenceFile,
Digester digester)
Creates a checksum file of the provided referenceFile.
|
boolean |
isValidChecksum(File checksumFile)
Given a checksum file, check to see if the file it represents is valid according to the checksum.
|
public boolean isValidChecksum(File checksumFile) throws DigesterException, FileNotFoundException, IOException
Given a checksum file, check to see if the file it represents is valid according to the checksum.
NOTE: Only supports single file checksums of type MD5 or SHA1.
checksumFile
- the checksum file (must end in ".sha1" or ".md5")DigesterException
- if there is a digester problem during the check of the reference file.FileNotFoundException
- if the checksumFile itself or the file it refers to is not found.IOException
- if the reading of the checksumFile or the file it refers to fails.public File createChecksum(File referenceFile, Digester digester) throws DigesterException, IOException
referenceFile
- the file to checksum.digester
- the digester to use.DigesterException
- if there was a problem calculating the checksum of the referenceFile.IOException
- if there was a problem either reading the referenceFile, or writing the checksum file.Copyright © 2001–2015 Codehaus Plexus. All rights reserved.