Here you can find the source of setDialogIcon(JDialog dialog, InputStream imageInputStream)
Parameter | Description |
---|---|
dialog | Dialog to change the icon of. |
imageInputStream | Input stream of the image. |
public static void setDialogIcon(JDialog dialog, InputStream imageInputStream)
//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."); } } }