本帖最後由 tonyh 於 2015-7-25 14:54 編輯
試利用 javax.swing 套件下的 ImageIcon 類別, 在視窗中置入圖片.
- import javax.swing.JFrame;
- import javax.swing.JLabel;
- import javax.swing.ImageIcon;
- public class Ch81 {
-
- private JFrame fm;
- private JLabel lb;
- private ImageIcon icon;
-
- Ch81()
- {
- icon=new ImageIcon(Ch81.class.getResource("pic/01.jpg"));
-
- lb=new JLabel(icon);
- lb.setBounds(0, 0, 399, 300);
-
- //左、右、下方的邊框佔 3 像素;上方的標題列佔 25 像素
- fm=new JFrame("ImageIcon 類別");
- fm.setBounds(100, 100, 405, 328);
- fm.setVisible(true);
- fm.setResizable(false);
- fm.setLayout(null);
- fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
- fm.add(lb);
- }
- public static void main(String[] args) {
- Ch81 app=new Ch81();
- }
- }
複製代碼 |