Swing小程序

import java.awt.*;
 import java.awt.event.*;
 import java.io.*;
 import javax.swing.*;

 /**
 7.    A program for viewing images.
 8. */
  public class ImageViewer
 {
	 public static void main(String[] args)
    {
		 JFrame frame = new ImageViewerFrame();
       frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
       frame.setVisible(true);
   }
 }

 /**
    A frame with a label to show an image.
 */
 class ImageViewerFrame extends JFrame
 {
    public ImageViewerFrame()
    {
       setTitle("ImageViewer");
       setSize(DEFAULT_WIDTH, DEFAULT_HEIGHT);
      // use a label to display the images
       label = new JLabel();
       add(label);
       // set up the file chooser
       chooser = new JFileChooser();
       chooser.setCurrentDirectory(new File("."));
       // set up the menu bar
       JMenuBar menuBar = new JMenuBar();
       setJMenuBar(menuBar);

       JMenu menu = new JMenu("File");
       menuBar.add(menu);
     JMenuItem openItem = new JMenuItem("Open");
       menu.add(openItem);
       openItem.addActionListener(new
          ActionListener()
          {
             public void actionPerformed(ActionEvent event)
             {
                // show file chooser dialog
                int result = chooser.showOpenDialog(null);

                // if file selected, set it as icon of the label
                if (result == JFileChooser.APPROVE_OPTION)
                {
                   String name = chooser.getSelectedFile().getPath();
                   label.setIcon(new ImageIcon(name));
                }
             }
          });

       JMenuItem exitItem = new JMenuItem("Exit");
       menu.add(exitItem);
       exitItem.addActionListener(new
          ActionListener()
          {
             public void actionPerformed(ActionEvent event)
             {
                System.exit(0);
             }
          });
    }

    private JLabel label;
   private JFileChooser chooser;
  private static final int DEFAULT_WIDTH = 300;
    private static final int DEFAULT_HEIGHT = 400;
 }
 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值