简单的Java组件容器 : Java组件 « 语言基础知识 « Java

En
Java
1. 图形用户界面
2. 三维图形动画
3. 高级图形
4. 蚂蚁编译
5. Apache类库
6. 统计图
7. 
8. 集合数据结构
9. 数据类型
10. 数据库JDBC
11. 设计模式
12. 开发相关类
13. EJB3
14. 电子邮件
15. 事件
16. 文件输入输出
17. 游戏
18. 泛型
19. GWT
20. Hibernate
21. 本地化
22. J2EE平台
23. 基于J2ME
24. JDK-6
25. JNDI的LDAP
26. JPA
27. JSP技术
28. JSTL
29. 语言基础知识
30. 网络协议
31. PDF格式RTF格式
32. 映射
33. 常规表达式
34. 脚本
35. 安全
36. Servlets
37. Spring
38. Swing组件
39. 图形用户界面
40. SWT-JFace-Eclipse
41. 线程
42. 应用程序
43. Velocity
44. Web服务SOA
45. 可扩展标记语言
Java 教程
Java » 语言基础知识 » Java组件屏幕截图 
简单的Java组件容器
简单的Java组件容器

import java.awt.Color;
import java.awt.Component;
import java.awt.Dimension;
import java.awt.FlowLayout;
import java.awt.Font;
import java.awt.Graphics;
import java.awt.GridLayout;
import java.awt.Point;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.FocusEvent;
import java.awt.event.FocusListener;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.awt.event.WindowListener;
import java.beans.PropertyChangeListener;
import java.beans.PropertyVetoException;
import java.beans.VetoableChangeListener;
import java.beans.VetoableChangeSupport;
import java.io.Externalizable;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectInputStream;
import java.io.ObjectOutput;
import java.io.ObjectOutputStream;

import javax.swing.BoxLayout;
import javax.swing.ButtonGroup;
import javax.swing.JComponent;
import javax.swing.JFileChooser;
import javax.swing.JFrame;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JMenuItem;
import javax.swing.JOptionPane;
import javax.swing.JPopupMenu;
import javax.swing.JRadioButtonMenuItem;
import javax.swing.event.ChangeEvent;
import javax.swing.event.ChangeListener;
import javax.swing.event.EventListenerList;
import javax.swing.event.SwingPropertyChangeSupport;

public class BeanContainer extends JFrame implements FocusListener {
  protected File currentDir = new File(".");

  protected Component currentBean;

  protected String className = "MyBean";

  protected JFileChooser fileChooser = new JFileChooser();

  public BeanContainer() {
    super("Simple Bean Container");
    getContentPane().setLayout(new FlowLayout());

    setSize(300300);

    JPopupMenu.setDefaultLightWeightPopupEnabled(false);

    JMenuBar menuBar = createMenuBar();
    setJMenuBar(menuBar);

    WindowListener wndCloser = new WindowAdapter() {
      public void windowClosing(WindowEvent e) {
        System.exit(0);
      }
    };
    addWindowListener(wndCloser);

    setVisible(true);
  }

  protected JMenuBar createMenuBar() {
    JMenuBar menuBar = new JMenuBar();

    JMenu mFile = new JMenu("File");

    JMenuItem mItem = new JMenuItem("New...");
    ActionListener lst = new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        NewBeanThread t = new NewBeanThread();  
        t.start();
      }
    };
    mItem.addActionListener(lst);
    mFile.add(mItem);

    mItem = new JMenuItem("Load...");
    lst = new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        LoadBeanThread t = new LoadBeanThread();
        t.start();
      }
    };
    mItem.addActionListener(lst);
    mFile.add(mItem);

    mItem = new JMenuItem("Save...");
    lst = new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        SaveBeanThread t = new SaveBeanThread();  
        t.start();
      }
    };
    mItem.addActionListener(lst);
    mFile.add(mItem);

    mFile.addSeparator();

    mItem = new JMenuItem("Exit");
    lst = new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        System.exit(0);
      }
    };
    mItem.addActionListener(lst);
    mFile.add(mItem);
    menuBar.add(mFile);

    JMenu mEdit = new JMenu("Edit");

    mItem = new JMenuItem("Delete");
    lst = new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        if (currentBean == null)
          return;
        getContentPane().remove(currentBean);
        currentBean = null;
        validate();
        repaint();
      }
    };
    mItem.addActionListener(lst);
    mEdit.add(mItem);
    menuBar.add(mEdit);

    JMenu mLayout = new JMenu("Layout");
    ButtonGroup group = new ButtonGroup();

    mItem = new JRadioButtonMenuItem("FlowLayout");
    mItem.setSelected(true);
    lst = new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        getContentPane().setLayout(new FlowLayout());
        validate();
        repaint();
      }
    };
    mItem.addActionListener(lst);
    group.add(mItem);
    mLayout.add(mItem);

    mItem = new JRadioButtonMenuItem("GridLayout");
    lst = new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        int col = 3;
        int row = (intMath.ceil(getContentPane().getComponentCount()
            (doublecol);
        getContentPane().setLayout(new GridLayout(row, col, 1010));
        validate();
        repaint();
      }
    };
    mItem.addActionListener(lst);
    group.add(mItem);
    mLayout.add(mItem);

    mItem = new JRadioButtonMenuItem("BoxLayout - X");
    lst = new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        getContentPane().setLayout(
            new BoxLayout(getContentPane(), BoxLayout.X_AXIS));
        validate();
        repaint();
      }
    };
    mItem.addActionListener(lst);
    group.add(mItem);
    mLayout.add(mItem);

    mItem = new JRadioButtonMenuItem("BoxLayout - Y");
    lst = new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        getContentPane().setLayout(
            new BoxLayout(getContentPane(), BoxLayout.Y_AXIS));
        validate();
        repaint();
      }
    };
    mItem.addActionListener(lst);
    group.add(mItem);
    mLayout.add(mItem);

    group.add(mItem);
    mLayout.add(mItem);

    menuBar.add(mLayout);

    return menuBar;
  }

  public void focusGained(FocusEvent e) {
    currentBean = e.getComponent();
    repaint();
  }

  public void focusLost(FocusEvent e) {
  }

  // This is a heavyweight component so we override paint
  // instead of paintComponent. super.paint(g) will
  // paint all child components first, and then we
  // simply draw over top of them.
  public void paint(Graphics g) {
    super.paint(g);

    if (currentBean == null)
      return;

    Point pt = getLocationOnScreen();
    Point pt1 = currentBean.getLocationOnScreen();
    int x = pt1.x - pt.x - 2;
    int y = pt1.y - pt.y - 2;
    int w = currentBean.getWidth() 2;
    int h = currentBean.getHeight() 2;

    g.setColor(Color.black);
    g.drawRect(x, y, w, h);
  }

  public static void main(String argv[]) {
    new BeanContainer();
  }
  class SaveBeanThread extends Thread {
    public void run() {
      if (currentBean == null)
        return;
      fileChooser
          .setDialogTitle("Please choose file to serialize bean");
      fileChooser.setCurrentDirectory(currentDir);
      int result = fileChooser
          .showSaveDialog(BeanContainer.this);
      repaint();
      if (result != JFileChooser.APPROVE_OPTION)
        return;
      currentDir = fileChooser.getCurrentDirectory();
      File fChoosen = fileChooser.getSelectedFile();
      try {
        FileOutputStream fStream = new FileOutputStream(
            fChoosen);
        ObjectOutput stream = new ObjectOutputStream(
            fStream);
        stream.writeObject(currentBean);
        stream.close();
        fStream.close();
      catch (Exception ex) {
        ex.printStackTrace();
        JOptionPane.showMessageDialog(BeanContainer.this,
            "Error: " + ex.toString()"Warning",
            JOptionPane.WARNING_MESSAGE);
      }
    }
  }

  class LoadBeanThread extends Thread{
    public void run() {
      fileChooser.setCurrentDirectory(currentDir);
      fileChooser
          .setDialogTitle("Please select file with serialized bean");
      int result = fileChooser
          .showOpenDialog(BeanContainer.this);
      repaint();
      if (result != JFileChooser.APPROVE_OPTION)
        return;
      currentDir = fileChooser.getCurrentDirectory();
      File fChoosen = fileChooser.getSelectedFile();
      try {
        FileInputStream fStream = new FileInputStream(
            fChoosen);
        ObjectInput stream = new ObjectInputStream(fStream);
        Object obj = stream.readObject();
        if (obj instanceof Component) {
          currentBean = (Componentobj;
          currentBean
              .addFocusListener(BeanContainer.this);
          currentBean.requestFocus();
          getContentPane().add(currentBean);
        }
        stream.close();
        fStream.close();
        validate();
      catch (Exception ex) {
        ex.printStackTrace();
        JOptionPane.showMessageDialog(BeanContainer.this,
            "Error: " + ex.toString()"Warning",
            JOptionPane.WARNING_MESSAGE);
      }
      repaint();
    }
  }

  class NewBeanThread extends Thread {
    public void run() {
      String result = (StringJOptionPane.showInputDialog(
          BeanContainer.this,
          "Use the following name for demanstration",
          "Input", JOptionPane.INFORMATION_MESSAGE, null,
          null, className);
      repaint();
      if (result == null)
        return;
      try {
        className = result;
        Class cls = Class.forName(result);
        Object obj = cls.newInstance();
        if (obj instanceof Component) {
          currentBean = (Componentobj;
          currentBean
              .addFocusListener(BeanContainer.this);
          currentBean.requestFocus();
          getContentPane().add(currentBean);
        }
        validate();
      catch (Exception ex) {
        ex.printStackTrace();
        JOptionPane.showMessageDialog(BeanContainer.this,
            "Error: " + ex.toString()"Warning",
            JOptionPane.WARNING_MESSAGE);
      }
    }
  }

}
class MyBean extends JComponent implements Externalizable {
  // Property names
  public static final String BEAN_VALUE = "Value";

  public static final String BEAN_COLOR = "Color";

  // Properties
  private Font beanFont; // simple

  private Dimension beanDimension; // simple

  private int beanValue; // bound

  private Color beanColor; // constrained

  private String text; // change

  // Manages all PropertyChangeListeners
  protected SwingPropertyChangeSupport propertySupporter = new SwingPropertyChangeSupport(
      this);

  // Manages all VetoableChangeListeners
  protected VetoableChangeSupport vetoableChangeSupport = new VetoableChangeSupport(this);

  protected transient ChangeEvent changeEvent = null;

  protected EventListenerList listenerList = new EventListenerList();

  public MyBean() {
    beanFont = new Font("SanSerif", Font.BOLD | Font.ITALIC, 12);
    beanDimension = new Dimension(150100);
    beanValue = 0;
    beanColor = Color.black;
    text = "BakedBean #";
  }

  public void paintComponent(Graphics g) {
    super.paintComponent(g);
    g.setColor(beanColor);
    g.setFont(beanFont);
    g.drawString(text + beanValue, 3030);
  }

  public void setBeanFont(Font font) {
    beanFont = font;
  }

  public Font getBeanFont() {
    return beanFont;
  }

  public void setBeanValue(int newValue) {
    int oldValue = beanValue;
    beanValue = newValue;

    // Notify all PropertyChangeListeners
    propertySupporter.firePropertyChange(BEAN_VALUE, new Integer(oldValue),
        new Integer(newValue));
  }

  public int getBeanValue() {
    return beanValue;
  }

  public void setBeanColor(Color newColorthrows PropertyVetoException {
    Color oldColor = beanColor;

    vetoableChangeSupport.fireVetoableChange(BEAN_COLOR, oldColor, newColor);

    beanColor = newColor;
    propertySupporter.firePropertyChange(BEAN_COLOR, oldColor, newColor);
  }

  public Color getBeanColor() {
    return beanColor;
  }

  public void setBeanString(String newString) {
    text = newString;

    // Notify all ChangeListeners
    fireStateChanged();
  }

  public String getBeanString() {
    return text;
  }

  public void setPreferredSize(Dimension dim) {
    beanDimension = dim;
  }

  public Dimension getPreferredSize() {
    return beanDimension;
  }

  public void setMinimumSize(Dimension dim) {
    beanDimension = dim;
  }

  public Dimension getMinimumSize() {
    return beanDimension;
  }

  public void addPropertyChangeListener(PropertyChangeListener l) {
    propertySupporter.addPropertyChangeListener(l);
  }

  public void removePropertyChangeListener(PropertyChangeListener l) {
    propertySupporter.removePropertyChangeListener(l);
  }

  public void addVetoableChangeListener(VetoableChangeListener l) {
    vetoableChangeSupport.addVetoableChangeListener(l);
  }

  public void removeVetoableChangeListener(VetoableChangeListener l) {
    vetoableChangeSupport.removeVetoableChangeListener(l);
  }

  // Remember that EventListenerList is an array of
  // key/value pairs.
  // key = XXListener class reference
  // value = XXListener instance
  public void addChangeListener(ChangeListener l) {
    listenerList.add(ChangeListener.class, l);
  }

  public void removeChangeListener(ChangeListener l) {
    listenerList.remove(ChangeListener.class, l);
  }

  // EventListenerList dispatching code.
  protected void fireStateChanged() {
    Object[] listeners = listenerList.getListenerList();
    // Process the listeners last to first, notifying
    // those that are interested in this event
    for (int i = listeners.length - 2; i >= 0; i -= 2) {
      if (listeners[i== ChangeListener.class) {
        if (changeEvent == null)
          changeEvent = new ChangeEvent(this);
        ((ChangeListenerlisteners[i + 1]).stateChanged(changeEvent);
      }
    }
  }

  public void writeExternal(ObjectOutput outthrows IOException {
    out.writeObject(beanFont);
    out.writeObject(beanDimension);
    out.writeInt(beanValue);
    out.writeObject(beanColor);
    out.writeObject(text);
  }

  public void readExternal(ObjectInput inthrows IOException,
      ClassNotFoundException {
    setBeanFont((Fontin.readObject());
    setPreferredSize((Dimensionin.readObject());
    // Use preferred size for minimum size..
    setMinimumSize(getPreferredSize());
    setBeanValue(in.readInt());
    try {
      setBeanColor((Colorin.readObject());
    catch (PropertyVetoException pve) {
      System.out.println("Color change vetoed..");
    }
    setBeanString((Stringin.readObject());
  }

  public static void main(String[] args) {
    JFrame frame = new JFrame("BakedBean");
    frame.getContentPane().add(new MyBean());
    frame.setVisible(true);
    frame.pack();
  }
}


           
       
Related examples in the same category
1. 如何创建Java组件组成部分如何创建Java组件组成部分
2. 使用断言验证值
3. BeanContext支持BeanContext支持
4. BeanContext子支助BeanContext子支助
5. how to use the instantiateChild() convenience method to create a bean automatically nested into a bean contexthow to use the instantiateChild() convenience method to create a bean automatically nested into a bean context
6. 说明BeanContextMembershipEvent说明BeanContextMembershipEvent
7. Creates all of the objects, a tests the service capabilitiesCreates all of the objects, a tests the service capabilities
8. A JTable subclass that displays a table of the JavaBeans properties of any specified classA JTable subclass that displays a table of the JavaBeans properties of any specified class
9. 演示设置功能组件
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.