文章详情

短信预约信息系统项目管理师 报名、考试、查分时间动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

java判断文件是否相同的方法

2016-07-17 18:05

关注

java判断文件是否相同的方法:

计算MD5或SHA-1然后对比判断

 // 计算文件的 MD5 值 根据MD5值 判断文件是否是同一个文件
public static String getFileMD5(File file) {
        if (!file.isFile()) {
            return null;
        }
        MessageDigest digest = null;
        FileInputStream in = null;
        byte buffer[] = new byte[8192];
        int len;
        try {
            digest =MessageDigest.getInstance("MD5");
            in = new FileInputStream(file);
            while ((len = in.read(buffer)) != -1) {
                digest.update(buffer, 0, len);
            }
            BigInteger bigInt = new BigInteger(1, digest.digest());
            return bigInt.toString(16);
        } catch (Exception e) {
            e.printStackTrace();
            return null;
        } finally {
            try {
                in.close();
            } catch (Exception e) {
                e.printStackTrace();
            }
        }

    }
// 计算文件的 SHA-1 值 根据SHA-1值 判断文件是否是同一个文件
    public static String getFileSha1(File file) {
        if (!file.isFile()) {
            return null;
        }
        MessageDigest digest = null;
        FileInputStream in = null;
        byte buffer[] = new byte[8192];
        int len;
        try {
            digest =MessageDigest.getInstance("SHA-1");
            in = new FileInputStream(file);
            while ((len = in.read(buffer)) != -1) {
                digest.update(buffer, 0, len);
            }
            BigInteger bigInt = new BigInteger(1, digest.digest());
            return bigInt.toString(16);
        } catch (Exception e) {
            e.printStackTrace();
            return null;
        } finally {
            try {
                in.close();
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    }

直接判断内容是否相同

 public class  IOOperation  
{  
    public static void main(String[] args)   
    {  
        FileInputStream File1 = null;  
        FileInputStream File2 = null;  
        BufferedReader in = null;  
        String sFile;  

        if(args.length != 2)  
        {  
            System.out.println("The command line should be: java IOOperation testX.txt testX.txt");  
            System.out.println("X should be one of the array: 1, 2, 3");  
            System.exit(0);  
        }  

        try  
        {  
            File1 = new FileInputStream(args[0]);  
            File2 = new FileInputStream(args[1]);  

            try  
            {  

                if(File1.available() != File2.available())  
                {  
                   //长度不同内容肯定不同  
                    System.out.println(args[0] + " is not equal to " + args[1]);  
                }  
                else  
                {  
                    boolean tag = true;  

                    while( File1.read() != -1 && File2.read() != -1)  
                    {  
                        if(File1.read() != File2.read())  
                        {  
                            tag = false;  
                            break;  
                        }  
                    }  

                    if(tag == true)  
                        System.out.println(args[0] + " equals to " + args[1]);  
                    else  
                        System.out.println(args[0] + " is not equal to " + args[1]);  
                }  
            }  
            catch(IOException e)  
            {  
                System.out.println(e);  
            }  
        }  
        catch (FileNotFoundException e)  
        {  
            System.out.println("File can't find..");  
        }  
        finally  
        {  

            try  
            {  
                if(File1 != null)  
                    File1.close();  
                if(File2 != null)  
                    File2.close();  
            }  
            catch (IOException e)  
            {  
                System.out.println(e);  
            }  
        }  
    }

更多java知识请关注java基础教程栏目。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     801人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     348人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     311人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     432人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     220人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯