동적 클래스 로딩 및 인스턴스화
동적 클래스 로딩에는 명시적인 컴파일 없이 프로그래밍 방식으로 Java 클래스를 로드하고 인스턴스화하는 작업이 포함됩니다. 이는 Java 동적 클래스 로딩 메커니즘을 활용하여 달성됩니다.
귀하의 경우 클래스 이름이 속성 파일에 저장되고 클래스가 IDynamicLoad 인터페이스를 구현한다고 언급하셨습니다. 클래스를 동적으로 인스턴스화하려면 다음 단계를 따르세요.
클래스를 로드합니다.
클래스를 컴파일합니다(아직 컴파일되지 않은 경우).
ClassLoader 만들기:
클래스를 로드하고 인스턴스화합니다.
예:
// Load the class name from the property file Properties properties = new Properties(); properties.load(Thread.currentThread().getContextClassLoader().getResourceAsStream("ClassName.properties")); String className = properties.getProperty("class", "DefaultClass"); // Compile the class if not already compiled if (!new File(className + ".class").exists()) { // Implementation for class compilation goes here } // Load and instantiate the class URLClassLoader classLoader = URLClassLoader.newInstance(new URL[] { new File("./").toURI().toURL() }); Class<?> cls = Class.forName(className, true, classLoader); Object instance = cls.getDeclaredConstructor().newInstance();
다음을 따르세요. 단계를 거치면 명시적 컴파일에 의존하지 않고도 Java 클래스를 동적으로 컴파일하고 인스턴스화할 수 있습니다.
위 내용은 속성 파일에서 Java 클래스를 동적으로 로드하고 인스턴스화하려면 어떻게 해야 합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!