Java JDialog Icon setDialogIcon(JDialog dialog, InputStream imageInputStream)

Here you can find the source of setDialogIcon(JDialog dialog, InputStream imageInputStream)

Description

Set the icon if a dialog.

License

Open Source License

Parameter

Parameter Description
dialog Dialog to change the icon of.
imageInputStream Input stream of the image.

Declaration

public static void setDialogIcon(JDialog dialog, InputStream imageInputStream) 

Method Source Code

//package com.java2s;
/******************************************************************************
 * Copyright (c) Tim Visee 2016-2017. All rights reserved.                    *
 *                                                                            *
 * @author Tim Visee                                                          *
 *                                                                            *
 * Open Source != No Copyright                                                *
 *                                                                            *
 * Permission is hereby granted, free of charge, to any person obtaining a    *
 * copy of this software and associated documentation files (the "Software")  *
 * to deal in the Software without restriction, including without limitation  *
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,   *
 * and/or sell copies of the Software, and to permit persons to whom the      *
 * Software is furnished to do so, subject to the following conditions:       *
 *                                                                            *
 * The above copyright notice and this permission notice shall be included    *
 * in all copies or substantial portions of the Software.                     *
 *                                                                            *
 * You should have received a copy of The MIT License (MIT) along with this   *
 * program. If not, see <http://opensource.org/licenses/MIT/>.                *
 ******************************************************************************/

import javax.imageio.ImageIO;
import javax.swing.*;

import java.io.IOException;
import java.io.InputStream;

public class Main {
    /**// w ww  .  j  a va  2 s .c o m
     * Set the icon if a dialog.
     *
     * @param dialog Dialog to change the icon of.
     * @param imageInputStream Input stream of the image.
     */
    public static void setDialogIcon(JDialog dialog, InputStream imageInputStream) {
        try {
            // Load the image and set the window icon
            dialog.setIconImage(ImageIO.read(imageInputStream));

        } catch (IOException | NullPointerException e) {
            System.out.println("Failed to set window icon.");
        }
    }
}

Related

  1. jdialog$setIconImage(JDialog dlg, Image image)
  2. setDialogIcon(JDialog dlg)
  3. setIconImage(JDialog j, Image b)
  4. setWindowIcon(JDialog jd)