JComboBox getSelectedIndex()方法

时间:2012-08-22 21:30:03

标签: java swing jcombobox itemlistener

我正在创建一个简单的文本编辑器,您可以在其中设置字体样式,字体大小,清除所有内容等。要设置字体大小,我添加了JComboBox并实现了ItemListener。这是我的MainWindow类:

import javax.swing.*;

public class MainWindow extends JFrame{
Editor e = new Editor();

public MainWindow(){
    super(".:My Text Editor:.");
    getContentPane().add(e);
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    pack();
    setVisible(true);
}

public static void main(String[] args) {
    SwingUtilities.invokeLater(new Runnable(){
        public void run() {
            new MainWindow();
        }
    });

}

}

这是我的编辑类:

import javax.swing.*;

import java.awt.BorderLayout;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.ItemEvent;
import java.awt.event.ItemListener;

public class Editor extends JPanel{
JPanel optionPanel = new JPanel();
JTextArea editArea = new JTextArea();
JButton boldBtn = new JButton("Bold");
JButton italicBtn = new JButton("Italic");
JButton plainBtn = new JButton("Plain");
JButton clearBtn = new JButton("Clear all");
String [] fontSizes = {"10","11","12","13","14","15","16","17","18","19","20"};
int fontSize;
JComboBox combo = new JComboBox(fontSizes);

public Editor(){
    createUI();
    addEvents();
}

public void createUI(){
    optionPanel.add(boldBtn);
    optionPanel.add(italicBtn);
    optionPanel.add(plainBtn);
    optionPanel.add(combo);
    optionPanel.add(clearBtn);

    setLayout(new BorderLayout());
    add(optionPanel,BorderLayout.NORTH);
    add(new JScrollPane(editArea),BorderLayout.CENTER);
    setPreferredSize(new Dimension(640,480));
}

public void addEvents(){

    boldBtn.addActionListener(new ActionListener(){
        public void actionPerformed(ActionEvent e){
            editArea.setFont(new Font("Sans Serif",Font.BOLD,fontSize));
        }
    });

    italicBtn.addActionListener(new ActionListener(){
        public void actionPerformed(ActionEvent e){
            editArea.setFont(new Font("Sans Serif",Font.ITALIC,fontSize));

        }
    });

    plainBtn.addActionListener(new ActionListener(){
        public void actionPerformed(ActionEvent e){
            editArea.setFont(new Font("Sans Serif",Font.PLAIN,fontSize));
        }
    });

    combo.addItemListener(new ItemListener(){

        public void itemStateChanged(ItemEvent e){
            int ind = combo.getSelectedIndex();
            System.out.println(ind); 
            fontSize = Integer.parseInt(fontSizes[ind]);
            editArea.setFont(new Font("Sans Serif",Font.PLAIN,fontSize));
        }
    });

    clearBtn.addActionListener(new ActionListener(){
        public void actionPerformed(ActionEvent e){
            editArea.setText("");
        }
    });
}

}

现在,奇怪的是发生了什么,当我把System.out.println(ind); line只是为了看看getSelectedIndex()方法返回什么索引。根据我点击的项目,它会返回给我:

1
1
0
0
2
2
3
3

为什么会这样?不应该只返回1 0 2 3?提前谢谢。

3 个答案:

答案 0 :(得分:3)

每当您更改JComboBox中的选择时,itemStateChanged事件将被触发两次,一次针对旧选定项目的DESELECT,一次针对新选定项目的SELECT。

如果您只希望执行一次代码,请执行以下操作:

if (e.getStateChange() == ItemEvent.SELECTED) {
...
}

答案 1 :(得分:3)

JCombobox fire ItemStateChanged两次用于SELECTED和DESELECTED,你用ItemEvent.getStateChanged()区分。所以将代码包装成if if:

public void itemStateChanged( ItemEvent event ) {
    if( event.getStateChanged() == ItemEvent.SELECTED ) {
        // code here
    }
}

答案 2 :(得分:2)

似乎itemStateChanged被触发两次。我认为每次ItemEvent参数都不一样。也许你应该在做某事之前检查事件类型。

抱歉,我现在无法检查,但如果您仍需要帮助,我会在以后检查。