检查jar冲突,查找存在相同class的jar

写在前面

本文看下如何查找jar冲突,即查找哪些jar包中存在相同的class。如果是存在相同jar的不同版本,基本一眼就能看出来,然后结合maven的依赖关系将其剔除掉即可,但是当你遇到了有人手动拷贝某些class到jar包中导致冲突的情况时,就欲哭无泪了,而我就曾掉入此🕳,灰常痛苦。所以本文就给出一段这样的程序,方便检测。

1:代码

java 复制代码
package com.dahuyou.asr.demo;

import com.sun.org.apache.xpath.internal.objects.XString;

import java.io.File;
import java.io.IOException;
import java.util.Enumeration;
import java.util.HashMap;
import java.util.jar.JarEntry;
import java.util.jar.JarFile;

public class scan_class {
    public static void main(String[] args) {
        String jarDirectoryPath="d:\\test\\lib";

        File directory = new File(jarDirectoryPath);
        File[] files = directory.listFiles(((dir, name) -> name.endsWith(".jar")));

        HashMap<String, String> hashMap = new HashMap<>();

        for (File jarFile : files){
            try {
                System.out.println(jarFile.getName());
                JarFile jar = new JarFile(jarFile);
                Enumeration<JarEntry> entries = jar.entries();

                while (entries.hasMoreElements()) {

                    JarEntry jarEntry = entries.nextElement();
                    String name = jarEntry.getName();

                    if (name.endsWith(".class")) {
                        String className=name.replace("/",".");

                        if(hashMap.containsKey(className)){
                            System.out.println("冲突的类:"+className);
                            System.out.println("存在于:"+hashMap.get(className)+"和:"+jarFile.getName());
                        }
                        else {
                            hashMap.put(className,jarFile.getName());
//                            System.out.println("写入:"+className+"  "+jarFile.getName());
                        }
                    }
                }

            } catch (IOException e) {
            System.err.println("无法读取 JAR 文件: " + jarFile.getName());
            e.printStackTrace();
        }

        }

    }}

测试jar,运行:

另,程序readme:

md 复制代码
功能:
检测某一路径下所有jar包的冲突类。

使用:
此处换成文件路径即可
String jarDirectoryPath="E:\\BaiduSyncdisk\\ZGM\\work\\bigdata_note\\软件安装\\seatunnel-2.3.3\\backend\\apache-seatunnel-2.3.3\\lib";

小程序,大作用!!!

写在后面

有时候,你想到了方案,却觉得麻烦而不去做,反而会导致更大的麻烦,所以,想到了就去做,工作如此,生活也亦应如此!!!

参考文章列表

相关推荐
summer_west_fish16 分钟前
单体VS微服务:架构选择实战指南
java·微服务·架构
v***85718 分钟前
Ubuntu介绍、与centos的区别、基于VMware安装Ubuntu Server 22.04、配置远程连接、安装jdk+Tomcat
java·ubuntu·centos
烤麻辣烫26 分钟前
黑马程序员大事件后端概览(表现效果升级版)
java·开发语言·学习·spring·intellij-idea
q***965829 分钟前
Spring总结(上)
java·spring·rpc
思密吗喽30 分钟前
宠物商城系统
java·开发语言·vue·毕业设计·springboot·课程设计·宠物
ss2731 小时前
019:深入解析可重入互斥锁:原理、实现与线程安全实践
java·数据库·redis
luyun0202021 小时前
牛批了,某音录播神器
java·windows·figma
高级程序源1 小时前
springboot社区医疗中心预约挂号平台app-计算机毕业设计源码16750
java·vue.js·spring boot·mysql·spring·maven·mybatis
y***61312 小时前
SpringBoot集成Flowable
java·spring boot·后端
烤麻辣烫2 小时前
黑马程序员苍穹外卖(新手)DAY6
java·开发语言·学习·spring·intellij-idea