labeldemo.java

来自「这是一个英文版的《Java程序设计与问题解决》现在好多大学都当成教材」· Java 代码 · 共 72 行

JAVA
72
字号
import java.awt.GridLayout;import java.awt.event.WindowAdapter;import java.awt.event.WindowEvent;import javax.swing.JLabel;import javax.swing.JPanel;import javax.swing.JFrame;import javax.swing.ImageIcon;/*  * LabelDemo.java needs one other file: *   images/middle.gif */public class LabelDemo extends JPanel {    public LabelDemo() {        JLabel label1, label2, label3;        ImageIcon icon = createImageIcon("images/middle.gif");        if (icon != null) {            icon.setDescription("a pretty but meaningless splat");        }        setLayout(new GridLayout(3,1));  //3 rows, 1 column        //Create the first label.        label1 = new JLabel("Image and Text",                            icon,                            JLabel.CENTER);        //Set the position of its text, relative to its icon:        label1.setVerticalTextPosition(JLabel.BOTTOM);        label1.setHorizontalTextPosition(JLabel.CENTER);        //Create the other labels.        label2 = new JLabel("Text-Only Label");        label3 = new JLabel(icon);        //Create tool tips, for the heck of it.        label1.setToolTipText("A label containing both image and text");        label2.setToolTipText("A label containing only text");        label3.setToolTipText("A label containing only an image");        //Add the labels.        add(label1);        add(label2);        add(label3);    }    /** Returns an ImageIcon, or null if the path was invalid. */    protected static ImageIcon createImageIcon(String path) {        java.net.URL imgURL = LabelDemo.class.getResource(path);        if (imgURL != null) {            return new ImageIcon(imgURL);        } else {            System.err.println("Couldn't find file: " + path);            return null;        }    }    public static void main(String[] args) {        //Make sure we have nice window decorations.        JFrame.setDefaultLookAndFeelDecorated(true);        //Create and set up the window.        JFrame frame = new JFrame("LabelDemo");        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);        frame.setContentPane(new LabelDemo());        //Display the window.        frame.pack();        frame.setVisible(true);    }}

⌨️ 快捷键说明

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