Java ImageIcon Load getImageIcon(String res)

Here you can find the source of getImageIcon(String res)

Description

Retrieves an ImageIcon from the specified resource

License

Open Source License

Parameter

Parameter Description
res a parameter

Return

ImageIcon or null

Declaration

public final static ImageIcon getImageIcon(String res) 

Method Source Code

//package com.java2s;
/**/*from  ww w  .jav  a  2 s. c om*/
 * Copyright (C) 2013 
 * Nicholas J. Little <arealityfarbetween@googlemail.com>
 *
 * 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 javax.swing.ImageIcon;

public class Main {
    /**
     * Retrieves an ImageIcon from the specified resource
     * 
     * @param res
     * @return ImageIcon or null
     */
    public final static ImageIcon getImageIcon(String res) {
        try {
            return new ImageIcon(ClassLoader.getSystemResource(res));
        } catch (Exception e) {
            e.printStackTrace();
        }
        return null;
    }
}

Related

  1. getImageIcon(String filename, String description)
  2. getImageIcon(String name)
  3. getImageIcon(String name)
  4. getImageIcon(String path)
  5. getImageIcon(String path, String description)
  6. getImageIcon(String resource)
  7. getImageIcon(URL u, int w)
  8. getImageIcon(URL url)
  9. getScaledInstance(Image img, int targetWidth, int targetHeight)