MD5消息摘要的java实现

版权声明:本博客内容为原创,若要转载,请注明出处!否则禁止转载! https://blog.csdn.net/wardenjohn/article/details/80297551

今天这个程序就是从文件中读取消息,使用MD5进行消息摘要

直接上程序:

package function;
import java.util.*;
import java.awt.*;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.InputStreamReader;
import java.security.*;
import javax.crypto.*;

public class MDF {
	String algorithm = "MD5";
	
	public void getInfo(String infile,String outfile){
		try{
			MessageDigest md = MessageDigest.getInstance(algorithm);
			BufferedReader reader = new BufferedReader(new InputStreamReader(new FileInputStream(infile)));
			String mes = "";
			StringBuffer buff = new StringBuffer();
			while((mes=reader.readLine())!=null){
				buff.append(mes);
			}
			reader.close();
			mes=buff.toString();
			md.update(mes.getBytes());
			
			FileOutputStream out = new FileOutputStream(new File(outfile));
			out.write(convertToHex(md.digest()).getBytes());
			out.close();
		}catch (Exception e) {
			// TODO: handle exception
			e.printStackTrace();
		}
	}
	
	public String convertToHex(byte[] info){
		StringBuffer buf = new StringBuffer();
		for(byte count : info){
			String t = Integer.toHexString(0xff & count);
			if(t.length() == 1)
				buf.append("0"+t);
			else
				buf.append(t);
		}
		return  buf.toString();
	}
	
	public static void main(String[] args){
		String infile,outfile;
		System.out.println("input the original file name");
		Scanner scan = new Scanner(System.in);
		infile=scan.nextLine();
		System.out.println("input the doc name of the result");
		outfile = scan.nextLine();
		MDF md = new MDF();
		md.getInfo(infile, outfile);
		System.out.println("program finished");
	}
}

猜你喜欢

转载自blog.csdn.net/wardenjohn/article/details/80297551