中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

利用java怎么將外部jar包添加到lasspath

發布時間:2020-12-04 16:29:49 來源:億速云 閱讀:175 作者:Leah 欄目:編程語言

利用java怎么將外部jar包添加到lasspath?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

java動態添加外部jar包到classpath的實例詳解

前言:

  在項目開發過程中我們有時候需要動態的添加外部jar包,但是具體的業務需求還沒有遇到過,因為如果動態添加外部jar包后,我們就需要修改業務代碼,而修改代碼就需要重新啟動服務,那樣好像就沒有必要動態添加外部jar包了,怎么樣才能不重新啟動服務器就可以使用最新的代碼我沒有找到方法,如果各位知道的話給我點建議,回歸主題,實現動態添加外部jar包到classpath的方法如下:

String beanClassName = "com.dynamic.DynamicBean3"; 
Map<String,Class<&#63;>> classMap = new HashMap<String,Class<&#63;>>(); 
String filePath = "f:\\testDynamicBean-1.0-SNAPSHOT.jar"; 
String uFilePath = "file:f:\\testDynamicBean-1.0-SNAPSHOT.jar"; 
 
URL url1 = new URL(uFilePath); 
URLClassLoader urlClassLoader = new URLClassLoader(new URL[] { url1 }, Thread.currentThread() 
        .getContextClassLoader()); 
List<JarEntry> jarEntryList = new ArrayList<>(); 
JarFile jarFile = new JarFile(filePath); 
Enumeration<JarEntry> jarEntryEnumeration = jarFile.entries(); 
while (jarEntryEnumeration.hasMoreElements()){ 
   JarEntry jarEntry = jarEntryEnumeration.nextElement(); 
   if (//jarEntry.getName().startsWith(filePath) && 
      jarEntry.getName().endsWith(".class")) { 
        jarEntryList.add(jarEntry); 
      } 
    } 
 
   for (JarEntry entry : jarEntryList) { 
      String className = entry.getName().replace('/', '.'); 
      className = className.substring(0, className.length() - 6); 
      if(!classMap.containsKey(beanClassName)){ 
        Class<&#63;> loadClass = urlClassLoader.loadClass(className); 
        classMap.put(className,loadClass); 
      } 
    } 
    try { 
      Method printMethod = classMap.get(beanClassName).getMethod("printBean3"); 
      printMethod.invoke(classMap.get(beanClassName).newInstance()); 
    } catch (IllegalAccessException e) { 
      e.printStackTrace(); 
    } catch (InvocationTargetException e) { 
      e.printStackTrace(); 
    } catch (NoSuchMethodException e) { 
      e.printStackTrace(); 
    } catch (InstantiationException e) { 
      e.printStackTrace(); 
    } 

關于利用java怎么將外部jar包添加到lasspath問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

浙江省| 福贡县| 资兴市| 嘉善县| 新郑市| 当涂县| 阜宁县| 苏尼特右旗| 五华县| 勐海县| 建水县| 师宗县| 新建县| 中卫市| 上饶县| 淳化县| 根河市| 同德县| 南丰县| 江西省| 武定县| 龙陵县| 乌苏市| 靖州| 吴桥县| 南丹县| 贞丰县| 苏尼特右旗| 绥阳县| 台前县| 武平县| 长治县| 龙泉市| 本溪| 陇川县| 仁怀市| 沂水县| 额济纳旗| 彩票| 保定市| 凤冈县|