91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

利用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

铁岭县| 惠水县| 大足县| 黄石市| 台前县| 阳谷县| 贵溪市| 兴安盟| 汶川县| 偃师市| 革吉县| 海盐县| 乌鲁木齐市| 游戏| 车致| 苏尼特左旗| 盐源县| 定兴县| 江都市| 云浮市| 太白县| 朔州市| 建瓯市| 建始县| 平邑县| 曲阜市| 揭西县| 左贡县| 西贡区| 营山县| 武鸣县| 太和县| 阿鲁科尔沁旗| 南昌县| 奉贤区| 临海市| 达尔| 合川市| 乌拉特中旗| 富阳市| 黑水县|