⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 labeldemo.java

📁 这是一个英文版的《Java程序设计与问题解决》现在好多大学都当成教材
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -