2

我目前正在用 Java 制作一个自定义的 Minecraft Server 启动器,并且已经到了我实际上想要按钮做某事的早期阶段。我设法让一个按钮响应(开始按钮),但是一旦我输入第二个 if 语句以使停止按钮响应,以前工作的开始按钮现在没有。我无法测试停止按钮,因为默认情况下它被禁用。当我切换 if 语句(首先放置 stopBtn actionlistener)时,开始按钮再次工作,但停止按钮没有。请问有人可以看看代码和帮助吗?

package custommcserver;

import java.awt.GridLayout;
import java.awt.event.*;
import javax.swing.*;

class Window extends JFrame implements ActionListener
{
    JPanel mainPnl = new JPanel(new GridLayout(2,1));
    JPanel propPnl = new JPanel();
    JButton startBtn = new JButton("Start");
    JButton stopBtn = new JButton("Stop");
    JButton propBtn = new JButton("Properties");

    public Window()
    {
        super("Custom Minecraft Server Launcher") ;
        setSize(500,200) ; 
        setDefaultCloseOperation(EXIT_ON_CLOSE) ;
        add(mainPnl) ;
        mainPnl.add(startBtn);
        mainPnl.add(stopBtn);
        mainPnl.add(propBtn);
        stopBtn.setEnabled(false);
        startBtn.addActionListener(this);
        stopBtn.addActionListener(this);
        propBtn.addActionListener(this);
        setVisible(true);
    }

    public void actionPerformed(ActionEvent event) 
    {

        if (event.getSource() == stopBtn);
        {
             stopBtn.setEnabled(false);
             startBtn.setEnabled(true);
        }

         if (event.getSource() == startBtn);
         {
             stopBtn.setEnabled(true);
             startBtn.setEnabled(false);
        }

      }
 }
4

1 回答 1

6

您在 if 语句后放置了分号。把它们带走:

if (event.getSource() == stopBtn)
        {
             stopBtn.setEnabled(false);
             startBtn.setEnabled(true);
        }

         if (event.getSource() == startBtn)
         {
             stopBtn.setEnabled(true);
             startBtn.setEnabled(false);
        }
于 2013-05-11T08:33:49.383 回答