FileUtils
class FileUtils
Description: file utility class for read file, convert in MD5 or add hexa code to string
method md5sum
public static synchronized String md5sum(File file)
Description: convert file to MD5 text
Input parameters: file: file path。
Output parameter: Returns a string value。
Related parameters: None。
method toHexString
private static synchronized String toHexString(byte[] b)
Description: hex code conversion from bytes
Input parameters: b: the byte data of file。
Output parameter: Returns a string value。
Related parameters: None。
method readFileToString
public static String readFileToString(String path)
Description: Read a local file and convert it to a string.
Input parameters: path: file path as a string。
Output parameter: Returns a string value。
Related parameters: None。
method getMD5
public static String getMD5(String s)
Description: Retrives MD5 data。
Input parameters: s:MD5 string。
Output parameter: Returns a string value。
Related parameters: None。