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

溫馨提示×

溫馨提示×

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

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

一個基本的自定義類加載器

發布時間:2020-07-06 20:09:32 來源:網絡 閱讀:679 作者:xpleaf 欄目:編程語言

實現自定義類加載器的三步:

  • 1.繼承ClassLoader
  • 2.重寫findClass()方法
  • 3.調用defineClass()方法

一個基本的自定義類加載器代碼如下:

package cn.xpleaf.coding.c4;

import java.io.*;

/**
 * @author xpleaf
 * @date 2019/3/10 11:10 AM
 */
public class CustomClassLoader extends ClassLoader {

    @Override
    protected Class<?> findClass(String name) throws ClassNotFoundException {
        try {
            byte[] result = getClassFromCustomPath(name);
            if (result == null) {
                throw new FileNotFoundException(name);
            } else {
                // defineClass方法將字節碼轉化為類
                return defineClass(name, result, 0, result.length);
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
        throw new ClassNotFoundException(name);
    }

    private byte[] getClassFromCustomPath(String name) {
        // 從自定義路徑中加載指定類,返回類的字節碼文件
        InputStream in = null;
        ByteArrayOutputStream out = null;
        String path = "/Users/yeyonghao/" + name + ".class";
        try {
            in = new FileInputStream(path);
            out = new ByteArrayOutputStream();
            byte[] buffer = new byte[2048];
            int len = 0;
            while ((len = in.read(buffer)) != -1) {
                out.write(buffer, 0, len);
            }
            return out.toByteArray();
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            try {
                in.close();
                out.close();
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
        return null;
    }

    public static void main(String[] args) {
        CustomClassLoader customClassLoader = new CustomClassLoader();
        try {
            Class<?> clazz = Class.forName("One", true, customClassLoader);
            Object obj = clazz.newInstance();
            // cn.xpleaf.coding.c4.CustomClassLoader@610455d6
            System.out.println(obj.getClass().getClassLoader());
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

執行結果如下:

cn.xpleaf.coding.c4.CustomClassLoader@610455d6
向AI問一下細節

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

AI

大埔县| 卓尼县| 乌兰浩特市| 昭通市| 且末县| 新龙县| 酉阳| 阜阳市| 枣庄市| 八宿县| 梓潼县| 武功县| 和静县| 罗山县| 政和县| 临猗县| 景泰县| 梁河县| 汶上县| 新闻| 贵溪市| 元江| 淮南市| 镇坪县| 娄烦县| 水城县| 秀山| 定州市| 齐齐哈尔市| 西充县| 镇巴县| 石林| 靖州| 漾濞| 凤凰县| 饶平县| 谷城县| 深圳市| 高阳县| 罗江县| 鞍山市|