做一个Java 下拉列表框 如下图所示 60

 我来答
爱吃的肸子
2017-06-10 · TA获得超过2649个赞
知道大有可为答主
回答量:1786
采纳率:54%
帮助的人:278万
展开全部
import java.applet.Applet;
import java.awt.*;
import java.awt.event.*;

public class L extends Applet implements ItemListener, ActionListener {
 Choice choice;
 TextField text;
 TextArea area;
 Button add, del;

 public void init() {
 choice 坦坦好= new Choice();
 text = new TextField(8);
 area = new TextArea(6, 15);
 choice.add("音乐天地");
 choice.add("武术天地");
 choice.add("象棋乐园");
 choice.add("交友聊天");
 add = new Button("添加");
 del = new Button("删除");
 add.addActionListener(this);
 del.addActionListener(this);
 choice.addItemListener(this);
 add(choice);
 add(del);
 信判add(text);
 add(add);
 add(area);
 }

 public void itemStateChanged(ItemEvent e) {
 String name = choice.getSelectedItem();
 int index = choice.getSelectedIndex();
 area.setText("\n" + index + ":" + name);
 }

 public void actionPerformed(ActionEvent e) {
 if (e.getSource() == add || e.getSource() == text) {
 String name = text.getText();
 if (name.length() > 0) 让铅{
 choice.add(name);
 choice.select(name);
 area.append("\n添加" + name);
 }
 } else if (e.getSource() == del) {
 choice.remove(choice.getSelectedIndex());
 area.append("\n删除" + choice.getSelectedItem());
 }
 }
}
正启金属
2017-06-10 · TA获得超过198个赞
知道小有建树答主
回答量:507
采纳率:57%
帮助的人:101万
展开全部
这个html都可以完成的!
java的面向对象语言我不是很熟悉
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
mtfmtf101
2017-06-10 · TA获得超过311个赞
知道小有建树答主
回答量:255
采纳率:71%
帮助的人:125万
展开全部
JFrame还是html?
更多追问追答
追问
JComboBox
JPanel
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式