// 来自 时 代 J a v a 公 众 号
//Licensed under the Apache License, Version 2.0 (the "License");
//package com.nowjava;
public class Main {
public static void main(String[] argv) throws Exception {
String className = "nowjava.com";
Class context = String.class;
boolean checkParent = true;
System.out.println(loadClass(className, context, checkParent));
}
/**
* Loads a class from the classloader;
* If not found, the classloader of the {@code context} class specified will be used.
* If the flag {@code checkParent} is true, the classloader's parent is included in
* the lookup.
*/
static Class<?> loadClass(String className, Class<?> context,
boolean checkParent) {
Class<?> clazz = null;
try {
clazz = Thread.currentThread().getContextClassLoader()
.loadClass(className);/*n o w j a v a . c o m - 时 代 Java*/
} catch (ClassNotFoundException e) {
if (context != null) {
ClassLoader loader = context.getClassLoader();
while (loader != null) {
try {
clazz = loader.loadClass(className);
return clazz;
/**代码未完, 请加载全部代码(NowJava.com).**/
本文系作者在时代Java发表,未经许可,不得转载。如有侵权,请联系nowjava@qq.com删除。