zoukankan      html  css  js  c++  java
  • 字符查找的界面建立

    import java.awt.Button;
    import java.awt.Color;
    import java.awt.FlowLayout;
    import java.awt.Frame;
    import java.awt.GridLayout;
    import java.awt.Label;
    import java.awt.Panel;
    import java.awt.TextField;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;

    import javax.swing.JOptionPane;


    public class QueryMFrame extends Frame implements ActionListener {
    TextField tfdName,tfdUnicode;
    Button btn1,btn2,btn3;
    public QueryMFrame(String str)
    {setTitle(str);
    setBounds(100,200,300,300);
    setLayout(new GridLayout(3,1));
    setBackground(Color.CYAN);


    Panel p1=new Panel();
    p1.setLayout(new FlowLayout(FlowLayout.RIGHT));
    p1.add(new Label("字符"));
    tfdName=new TextField(20);
    p1.add(tfdName);
    add(p1);

    Panel p2=new Panel();
    p2.setLayout(new FlowLayout(FlowLayout.RIGHT));
    p2.add( new Label("Unicode码"));
    tfdUnicode=new TextField(20);
    p2.add(tfdUnicode);
    add(p2);


    Panel p3=new Panel();
    btn1=new Button("查询Unicode");
    btn2=new Button("查询字符");
    btn3=new Button("EXIT");
    btn3.setActionCommand("EX");
    p3.add(btn1);
    p3.add(btn2);
    p3.add(btn3);
    add(p3);


    btn1.addActionListener(this);
    btn2.addActionListener(this);
    btn3.addActionListener(this);

    setVisible(true);



    }

    public static void main(String[] args) {
    new QueryMFrame("华南城市学院");

    }
    public void actionPerformed(ActionEvent e) {
    if(e.getSource()==btn1){
    String str=tfdName.getText();
    char ch=str.charAt(0);
    tfdUnicode.setText(""+(int)ch);

    }
    if(e.getSource()==btn2){
    String str=tfdUnicode.getText();
    try{
    int n=Integer.parseInt(str);
    tfdName.setText(""+(char)n);

    }catch(NumberFormatException e1){
    JOptionPane.showMessageDialog( this, str+"不是整数,无法查询Unicode码");

    }

    }
    if(e.getActionCommand().equals("EX")){
    System.exit(0);

    }



    }

    }

  • 相关阅读:
    Android代码宏控制方案 【转】
    android 系统签名【转】
    linux中udev简单的用法-->【转】
    linux中udev简单的用法【转】
    linux udev 机制【转】
    SQL SERVER2008 存储过程、表、视图、函数的权限
    用友u8数据库表结构
    SqlServer 添加用户 添加角色 分配权限
    SP_attach_db 添加数据库文件
    数据库的创建和文件的修改
  • 原文地址:https://www.cnblogs.com/1314wamm/p/5603424.html
Copyright © 2011-2022 走看看