這篇文章給大家介紹如何在java中利用ClassLoader加載指定的class文件,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。
成都創(chuàng)新互聯(lián)公司專注于中大型企業(yè)的網(wǎng)站設(shè)計(jì)、網(wǎng)站建設(shè)和網(wǎng)站改版、網(wǎng)站營(yíng)銷服務(wù),追求商業(yè)策劃與數(shù)據(jù)分析、創(chuàng)意藝術(shù)與技術(shù)開(kāi)發(fā)的融合,累計(jì)客戶上千余家,服務(wù)滿意度達(dá)97%。幫助廣大客戶順利對(duì)接上互聯(lián)網(wǎng)浪潮,準(zhǔn)確優(yōu)選出符合自己需要的互聯(lián)網(wǎng)運(yùn)用,我們將一直專注品牌網(wǎng)站制作和互聯(lián)網(wǎng)程序開(kāi)發(fā),在前進(jìn)的路上,與客戶一起成長(zhǎng)!首先定義一個(gè)類,比如MyTest,并且將其編譯成class文件,然后放到一個(gè)指定的文件夾下面,其中文件夾的最后幾層就是它的包名,這里我將這個(gè)編譯好的類放到 : /Users/allen/Desktop/cn/lijie/MyTest.class
package cn.lijie; public class MyTest { public void show() { System.out.println("show test!"); } }
public class MyClassLoader extends ClassLoader { @Override protected Class> findClass(String name) { String myPath = "file:///Users/allen/Desktop/" + name.replace(".","/") + ".class"; System.out.println(myPath); byte[] cLassBytes = null; Path path = null; try { path = Paths.get(new URI(myPath)); cLassBytes = Files.readAllBytes(path); } catch (IOException | URISyntaxException e) { e.printStackTrace(); } Class clazz = defineClass(name, cLassBytes, 0, cLassBytes.length); return clazz; } }
public class MainClass { public static void main(String[] args) throws ClassNotFoundException { MyClassLoader loader = new MyClassLoader(); Class> aClass = loader.findClass("cn.lijie.MyTest"); try { Object obj = aClass.newInstance(); Method method = aClass.getMethod("show"); method.invoke(obj); } catch (Exception e) { e.printStackTrace(); } } }
執(zhí)行主函數(shù),調(diào)用外部class的show方法:
補(bǔ)充:java遠(yuǎn)程加載class文件
準(zhǔn)備:
引入jar包 ganymed-ssh3-262.jar
1.加載外部class要定義自己的類加載器
2.使用內(nèi)存流
import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.InputStream; import ch.ethz.ssh3.Connection; import ch.ethz.ssh3.SFTPInputStream; import ch.ethz.ssh3.SFTPv3Client; public class Fs{ public static void main(String[] args) throws Exception { OwnClassLoader ocl = new OwnClassLoader(); String ip,user,password; ip = "120.34.168.80";//自己的遠(yuǎn)程ip user = "root";//username password = "123456";//password ocl.login(ip, user, password); Object obj = ocl.loadeOthClass("/opt/4/tt.class");//class文件路徑 System.out.println(obj); Class c = obj.getClass(); Field f = c.getDeclaredField("age"); f.setAccessible(true); System.out.println("age:"+f.get(obj)); } } //自定義類加載器 class OwnClassLoader extends ClassLoader{ private Connection conn = null; //初始化鏈接 public Connection login(String ip,String user,String password){ Connection conn = null; try { //也可以new Connection(ip, port)創(chuàng)建對(duì)象,默認(rèn)22 conn = new Connection(ip); //連接遠(yuǎn)程服務(wù) conn.connect(); //使用用戶名和密碼登錄 conn.authenticateWithPassword(user, password); this.conn = conn; return conn; } catch (IOException e) { e.printStackTrace(); } return null; } //返回遠(yuǎn)程實(shí)例 public Object loadeOthClass(String url) throws Exception{ if(null==conn) throw new Exception("請(qǐng)初始化鏈接"); SFTPv3Client sc = new SFTPv3Client(conn);//創(chuàng)建ssh客戶端連接 InputStream is = new SFTPInputStream(sc.openFileRO(url));//創(chuàng)建輸入流 byte[] b = this.readClassFile(is); Class> c = super.defineClass(b, 0, b.length);//定義class return c.newInstance();//創(chuàng)建實(shí)例 } //讀取遠(yuǎn)程class文件 private byte[] readClassFile(InputStream is){ byte[] b = new byte[1024]; int len; ByteArrayOutputStream bos = null; try { bos = new ByteArrayOutputStream();//內(nèi)存流輸出 while((len=is.read(b))!=-1){ bos.write(b, 0, len); } b = bos.toByteArray(); } catch (Exception e) { // TODO Auto-generated catch block e.printStackTrace(); }finally{ try { if(is!=null) is.close(); if(bos!=null) bos.close(); } catch (Exception e2) { // TODO: handle exception } } return b; } }
輸出結(jié)果:
關(guān)于如何在java中利用ClassLoader加載指定的class文件就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。