Java ClassLoader Load getImageFilename(String name)

Here you can find the source of getImageFilename(String name)

Description

Adds the path of the images directory to the name of the image.

License

Open Source License

Parameter

Parameter Description
name the name of the image to add the path to

Return

the full path of the image

Declaration

public static String getImageFilename(String name) 

Method Source Code

//package com.java2s;
/*// w w  w.  jav a 2  s  .c o m
 *   This program is free software: you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation, either version 3 of the License, or
 *   (at your option) any later version.
 *
 *   This program 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 General Public License for more details.
 *
 *   You should have received a copy of the GNU General Public License
 *   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

import java.net.URL;

public class Main {
    /**
     * Adds the path of the images directory to the name of the image.
     *
     * @param name   the name of the image to add the path to
     * @return      the full path of the image
     */
    public static String getImageFilename(String name) {
        String result;
        String dir;
        URL url;

        result = null;

        dir = "com/github/fracpete/screencast4j/images/";
        try {
            url = ClassLoader.getSystemClassLoader().getResource(dir + name);
            if (url != null)
                result = dir + name;
        } catch (Exception e) {
            // ignored
        }

        return result;
    }
}

Related

  1. getFileFromPath(Object obj, String fileName)
  2. getFileFromPool(String path)
  3. getFileFullPath(String file)
  4. getFilesInPackage(String packageName)
  5. getFullPathByPkg(String pkg)
  6. getInputStream(String name)
  7. getLibKoyaVersion()
  8. getLocalFile(final String aLocalPath)
  9. getLog4jPropertiesLocation()