Java Path to URL getURLFromClassPath(String source)

Here you can find the source of getURLFromClassPath(String source)

Description

get URL From Class Path

License

Open Source License

Declaration

private static URL getURLFromClassPath(String source) 

Method Source Code

//package com.java2s;
/*//from  ww w .j  av a 2  s .c o  m
Copyright (C) 2003 EBI, GRL
    
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
    
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Lesser General Public License for more details.
    
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA
 */

import java.net.URL;

public class Main {
    private static URL getURLFromClassPath(String source) {
        //remove the protocal: from a URL string, if present
        if (source.indexOf(":") >= 0)
            source = source.substring(source.indexOf(":"));

        return ClassLoader.getSystemResource(source);
    }
}

Related

  1. getURL(String path, URL context)
  2. getUrl(String pluginId, String relativePath)
  3. getURL(String schema, String host, String path)
  4. getUrl(URL base, String path)
  5. getUrlForLocalPath(String path)
  6. getURLFromPath(String jarPath)
  7. getUrlFromPath(String path)
  8. getUrlFromUrlPath(String path)
  9. getURLPath(URI uri)