imageiconloader.java

来自「本书透彻讲解了经典的《设计模式:可复用面向对象软件的基础》一书涵盖的23种基本设」· Java 代码 · 共 69 行

JAVA
69
字号
package com.oozinoz.imaging;

import javax.swing.ImageIcon;
import javax.swing.JFrame;

/*
 * Copyright (c) 2001 Steven J. Metsker.
 * 
 * Steve Metsker makes no representations or warranties about
 * the fitness of this software for any particular purpose, 
 * including the implied warranty of merchantability.
 *
 * Please use this software as you wish with the sole
 * restriction that you may not claim that you wrote it.
 */
/**
 * This class acts as an ImageIcon that can have three
 * images: an 'absent' image, a 'loading' image, and the
 * target image.
 * 
 * @author Steven J. Metsker
 */
public class ImageIconLoader
	extends ImageIcon
	implements Runnable {
	static final ImageIcon ABSENT =
		new ImageIcon(
			ClassLoader.getSystemResource("absent.jpg"));
	static final ImageIcon LOADING =
		new ImageIcon(
			ClassLoader.getSystemResource("loading.jpg"));
	protected String filename;
	protected JFrame callbackFrame;
/**
 * Construct an ImageIconLoader that will (on demand) 
 * load the image in the provided file.
 *
 * @param filename the name of a file to load
 */
public ImageIconLoader(String filename)
{
	super(ABSENT.getImage());
	this.filename = filename;
}
/**
 * Load the desired image and call back the provided frame
 * when done.
 *
 * @param JFrame the frame to repaint when the image is loaded
 */
public void load(JFrame callbackFrame)
{
	this.callbackFrame = callbackFrame;
	setImage(LOADING.getImage());
	callbackFrame.repaint();
	new Thread(this).start();
}
/**
 * Load the desired image (presumably in a separate thread). 
 */
public void run()
{
	setImage(
		new ImageIcon(
			ClassLoader.getSystemResource(filename))
			.getImage());
	callbackFrame.pack();
}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?