gpt4 book ai didi

java - addactionListener(this) 如何正确放置这行代码?

转载 作者:行者123 更新时间:2023-12-02 04:07:21 26 4
gpt4 key购买 nike

所以我正在设计一个聊天室,在我可以阅读套接字之前,我需要完成这个 GUI。基本上我主要使用 TextDemo作为我的向导。我喜欢它的显示方式,所以我认为这是一个很容易开始我的代码的地方。在我的代码中,每当我尝试输入时它就会中断:

input.addActionListener(this);

当我注释掉该行时,它会恢复完美显示/运行。由于我的错误,看起来我把它放在了错误的位置。我尝试过稍微移动它,但我似乎还没有解决问题的能力来解决这个问题。有人可以帮助纠正我并解释我在这里做错了什么吗?

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

public class GUI extends JPanel implements ActionListener
{
private final static String newline = "\n";

///// CREATING THE GUI /////
JFrame frame = new JFrame("Chatroom");
JPanel panel = new JPanel();
JPanel panel2 = new JPanel();
JPanel chatpanel = new JPanel();
JPanel inputpanel = new JPanel();
JPanel sendpanel = new JPanel();
JTextArea chat = new JTextArea(19, 49);
JTextArea input = new JTextArea(3, 40);

JScrollPane chatscroll = new JScrollPane(chat,
JScrollPane.VERTICAL_SCROLLBAR_ALWAYS,
JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
JScrollPane inputscroll = new JScrollPane(input,
JScrollPane.VERTICAL_SCROLLBAR_ALWAYS,
JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);

JButton connectbutton = new JButton("Connect");
JButton disconnectbutton = new JButton("Disconnect");
JButton send = new JButton("Send");
JLabel label = new JLabel();

///// GUI CONSTRUCTOR /////
public GUI()
{
chatroomGUI();
}

public void chatroomGUI()
{
///// GUI DISPLAY /////
frame.setVisible(true);
frame.setSize(800, 450);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

panel.setBackground(Color.GRAY);
panel2.setBackground(Color.lightGray);
chatpanel.setBackground(Color.lightGray);
inputpanel.setBackground(Color.lightGray);
sendpanel.setBackground(Color.lightGray);

///// ACTION LISTENER /////
//input.addActionListener(this);

chat.setEditable(false);
chat.setFont(new Font("Dialog", Font.PLAIN, 12));
chat.setLineWrap(true);
chat.setWrapStyleWord(true);

input.setFont(new Font("Fialog", Font.PLAIN, 12));
input.setLineWrap(true);
input.setWrapStyleWord(true);

sendpanel.setLayout(new BorderLayout(0, 0));
sendpanel.setPreferredSize(new Dimension(95, 50));
chatpanel.setLayout(new FlowLayout());
chatpanel.setPreferredSize(new Dimension(565, 320));

///// ADD AREA /////
chatpanel.add(chatscroll);
inputpanel.add(inputscroll);
inputpanel.add(sendpanel, BorderLayout.EAST);
sendpanel.add(send, BorderLayout.CENTER);

panel.add(connectbutton);
panel.add(disconnectbutton);
panel.add(label);

panel2.add(chatpanel);
panel2.add(inputpanel);

frame.add(panel, BorderLayout.WEST);
frame.add(panel2);
}

///// ACTION PERFORMED /////
/*The following will take any text that is typed inside of
the "input" area and display it in the "chat" screen area.*/
public void actionPerformed(ActionEvent evt)
{
String text = input.getText();
chat.append(text + newline);
input.selectAll();
chat.setCaretPosition(chat.getDocument().getLength());
}
}

注意:我的主要内容在另一个类(class)。该代码看起来就像:

public class Chatroom
{
public static void main(String[] args)
{
javax.swing.SwingUtilities.invokeLater(new Runnable()
{
public void run()
{
new GUI();
}
});
}
}

最佳答案

JTextArea 不支持 ActionListener API,因此它没有 addActionListener 方法。您应该咨询JavaDocstutorials首先

根据您想要执行的操作,您可能会考虑使用 DocumentListenerDocumentFilter或使用键绑定(bind) API,例如 example

关于java - addactionListener(this) 如何正确放置这行代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34144493/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com