java创建一个有一个文本区域和三个按钮的程序。当我们按下每个按钮时,使不同的文字显示在文本区域中

 我来答
百度网友d01bcdb
2010-05-06 · TA获得超过352个赞
知道小有建树答主
回答量:277
采纳率:0%
帮助的人:260万
展开全部

怎么没分呢?!这个很easy啦~程序如下:

package com;

import java.awt.BorderLayout;

import java.awt.event.ActionEvent;

import java.awt.event.ActionListener;

import javax.swing.*;

   

  public   class   CommonLayouts   extends   JFrame implements ActionListener   

  {  

   public JButton chinese=new   JButton("中文");

   public JButton English=new   JButton("英文");

   public JButton Flag=new   JButton("标点");

   public JTextArea show=new JTextArea(400,400);

     public CommonLayouts()

     {

      this.setTitle("写字板");

      this.setLayout(new BorderLayout());

      this.add(chinese,   BorderLayout.NORTH);   

      this.add(Flag,   BorderLayout.SOUTH); 

      this.add(English,   BorderLayout.WEST); 

      this.add(show,   BorderLayout.CENTER); 

      this.setSize(600,500);

      chinese.addActionListener(this);

      English.addActionListener(this);

      Flag.addActionListener(this);

      this.setLocationRelativeTo(null);

      this.setVisible(true);

      

      this.setDefaultCloseOperation(this.EXIT_ON_CLOSE);

     }

     public static void main(String args[])

     {

      new CommonLayouts();

     }

 public void actionPerformed(ActionEvent arg0) {

  // TODO 自动生成方法存根

  if(arg0.getSource()==chinese)

  {

   show.setText(show.getText()+"显示中文!\n");

  }

  else if(arg0.getSource()==English)

  {

   show.setText(show.getText()+"Display English!\n");

  }

  else

  {

   show.setText(show.getText()+",.+-+==-=-*/-.<><>(显示标点)\n");

  }

 }

  }

推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式