Java ClassPath Get getClassLoaderClasspath(ClassLoader loader)

Here you can find the source of getClassLoaderClasspath(ClassLoader loader)

Description

get Class Loader Classpath

License

Apache License

Declaration

public static Set<URL> getClassLoaderClasspath(ClassLoader loader) 

Method Source Code

//package com.java2s;
/**/*w  ww. j  a  v a  2s.  c o m*/
 *  Licensed to the Apache Software Foundation (ASF) under one or more
 *  contributor license agreements.  See the NOTICE file distributed with
 *  this work for additional information regarding copyright ownership.
 *  The ASF licenses this file to You under the Apache License, Version 2.0
 *  (the "License"); you may not use this file except in compliance with
 *  the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */

import java.net.URL;
import java.net.URLClassLoader;

import java.util.LinkedHashSet;

import java.util.Set;

public class Main {
    public static Set<URL> getClassLoaderClasspath(ClassLoader loader) {
        LinkedHashSet<URL> jars = new LinkedHashSet<URL>();
        getClassLoaderClasspath(loader, jars);
        return jars;
    }

    public static void getClassLoaderClasspath(ClassLoader loader, LinkedHashSet<URL> classpath) {
        if (loader == null || loader == ClassLoader.getSystemClassLoader()) {
            return;
            //        } else if (loader instanceof MultiParentClassLoader) {
            //            MultiParentClassLoader cl = (MultiParentClassLoader)loader;
            //            for (ClassLoader parent : cl.getParents()) {
            //                getClassLoaderClasspath(parent, classpath);
            //            }
            //            for (URL u : cl.getURLs()) {
            //                classpath.add(u);
            //            }
        } else if (loader instanceof URLClassLoader) {
            URLClassLoader cl = (URLClassLoader) loader;
            getClassLoaderClasspath(cl.getParent(), classpath);
            for (URL u : cl.getURLs()) {
                classpath.add(u);
            }
        } else {
            getClassLoaderClasspath(loader.getParent(), classpath);
        }
    }
}

Related

  1. getClassFromLibs(String className, List libs, boolean useSystemClassPath)
  2. getClassPath()
  3. getClasspath()
  4. getClasspath()
  5. getClassPath()