当前位置:七道奇文章资讯编程技术Java编程
日期:2011-03-22 16:13:00  来源:本站整理

[JAVA100例]013、复合下拉列表[Java编程]

赞助商链接



  本文“[JAVA100例]013、复合下拉列表[Java编程]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.border.*;
import java.util.*;
import java.text.SimpleDateFormat;
/**
* <p>Title: ComboBox下拉域演示</p>
* <p>Description: 通过挑选或这输入一种日期格局来格局化本日的日期</p>
* <p>Copyright: Copyright (c) 2003</p>
* <p>Filename: ComboBoxDemo.java</p>
* @version 1.0
*/
public class ComboBoxDemo extends JPanel
   implements ActionListener {
   static JFrame frame;
   JLabel result;
   String currentPattern;
/**
*<br>办法阐明:构造器.初始化窗体构件
*<br>输入参数:
*<br>返回范例:
*/
   public ComboBoxDemo() {
     setLayout(new BoxLayout(this, BoxLayout.PAGE_AXIS));
     String[] patternExamples = {
         "dd MMMMM yyyy",
         "dd.MM.yy",
         "MM/dd/yy",
         "yyyy.MM.dd G ´at´ hh:mm:ss z",
         "EEE, MMM d, ´´yy",
         "h:mm a",
         "H:mm:ss:SSS",
         "K:mm a,z",
         "yyyy.MMMMM.dd GGG hh:mm aaa"
         };
currentPattern = patternExamples[0];
//设置一个标准的用户界面
     JLabel patternLabel1 = new JLabel("输入一个字符格局大概");
     JLabel patternLabel2 = new JLabel("从下拉列表中挑选一种:");
JComboBox patternList = new JComboBox(patternExamples);
     patternList.setEditable(true);//标注这里ComboBox可举行编辑
     patternList.addActionListener(this);
//成立一个显示后果用户界面
     JLabel resultLabel = new JLabel("当前 日期/时间",
                     JLabel.LEADING);//相当于LEFT
     result = new JLabel(" ");
     result.setForeground(Color.black);
     result.setBorder(BorderFactory.createCompoundBorder(
       BorderFactory.createLineBorder(Color.black),
       BorderFactory.createEmptyBorder(5,5,5,5)
     ));
//安置构件
     JPanel patternPanel = new JPanel();
     patternPanel.setLayout(new BoxLayout(patternPanel,
                BoxLayout.PAGE_AXIS));
     patternPanel.add(patternLabel1);
     patternPanel.add(patternLabel2);
     patternList.setAlignmentX(Component.LEFT_ALIGNMENT);
     patternPanel.add(patternList);
JPanel resultPanel = new JPanel(new GridLayout(0, 1));
     resultPanel.add(resultLabel);
     resultPanel.add(result);
patternPanel.setAlignmentX(Component.LEFT_ALIGNMENT);
     resultPanel.setAlignmentX(Component.LEFT_ALIGNMENT);
add(patternPanel);
     add(Box.createRigidArea(new Dimension(0, 10)));
     add(resultPanel);
setBorder(BorderFactory.createEmptyBorder(10,10,10,10));
reformat();
   }
/**
*<br>办法阐明:事件处理
*<br>输入参数:
*<br>返回范例:
*/
   public void actionPerformed(ActionEvent e) {
     JComboBox cb = (JComboBox)e.getSource();
     String newSelection = (String)cb.getSelectedItem();
     currentPattern = newSelection;
     reformat();
   }
/**
*<br>办法阐明:格局和显示本日的日期
*<br>输入参数:
*<br>返回范例:
*/
   public void reformat() {
     Date today = new Date();
     SimpleDateFormat formatter =
      new SimpleDateFormat(currentPattern);
     try {
       String dateString = formatter.format(today);
       result.setForeground(Color.black);
       result.setText(dateString);
     } catch (IllegalArgumentException iae) {
       result.setForeground(Color.red);
       result.setText("Error: " + iae.getMessage());
     }
   }
/**
*<br>办法阐明:主办法
*<br>输入参数:
*<br>返回范例:
*/
   public static void main(String[] args) {
     JFrame.setDefaultLookAndFeelDecorated(true);
//成立一个窗体
     frame = new JFrame("ComboBoxDemo");
     frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
//成立一个面版容器
     JComponent newContentPane = new ComboBoxDemo();
     newContentPane.setOpaque(true);
     frame.setContentPane(newContentPane);
//显示窗体
     frame.pack();
     frame.setVisible(true);
   }
}


  以上是“[JAVA100例]013、复合下拉列表[Java编程]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
  • 利用Javascript实现网页水印(非图片水印)
  • Java开辟环境的搭建
  • Ubuntu java安装与配置
  • 办理Ubuntu 10.04 Firefox3.6 Java浏览器插件不工作的问
  • Ubuntu重装后Java环境的设置
  • Sun Java进入Ubuntu 10.10软件中央
  • Ubuntu 10.10配置Java开辟环境
  • 在Ubuntu 10.10中配置Java环境变量的办法
  • Ubuntu下Java环境的搭建
  • Ubuntu 10.04 下安装 Java, JRE
  • Ubuntu 10.04下的搭建SUN JAVA开辟环境
  • Ubuntu 12.04安装java7
  • 本文地址: 与您的QQ/BBS好友分享!
    • 好的评价 如果您觉得此文章好,就请您
        0%(0)
    • 差的评价 如果您觉得此文章差,就请您
        0%(0)

    文章评论评论内容只代表网友观点,与本站立场无关!

       评论摘要(共 0 条,得分 0 分,平均 0 分) 查看完整评论
    Copyright © 2020-2022 www.xiamiku.com. All Rights Reserved .