AI: Enter 1 to add question to chatbot.
AI: Enter 2 to start chatting with bot.
AI: Enter 3 to end chatbot.
[You] 1
[You] hi
AI: Hello there!
[You] hi
上面的一个是在GUI jtextarea JFrame中,我如何删除最终的" [You] hi"那是在" AI之后:你好!"?只有一个" hi"是由我写的jtextfield,但它回复2"嗨"。还是有一种更简单的方法让我编写一个可以选择多个其他类的代码" function"比这个? 以下是我的代码。
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JFrame;
import javax.swing.JTextArea;
import javax.swing.JTextField;
public class GUItest2 extends JFrame {
private JTextField userinput = new JTextField();
private JTextArea scriptarea = new JTextArea();
private String stringinput;
public GUItest2() {
// Frame Attributes:
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setSize(600, 600);
this.setVisible(true);
this.setResizable(false);
this.setLayout(null);
this.setTitle("Java AI");
setLocationRelativeTo(null);
userinput.setLocation(2, 540);
userinput.setSize(590, 30);
scriptarea.setLocation(15, 5);
scriptarea.setSize(560, 510);
scriptarea.setEditable(false);
this.add(userinput);
this.add(scriptarea);
selectionfunction();
// chatfunction();
}
public void textarea() {
// userinput.addActionListener(new ActionListener(){
// public void actionPerformed(ActionEvent arg0){
stringinput = userinput.getText();
scriptarea.append("[You] " + stringinput + "\n");
// }
// });
}
public void selectionfunction() {
botreply("Enter 1 to add question to chatbot.");
botreply("Enter 2 to start chatting with bot.");
botreply("Enter 3 to end chatbot.");
userinput.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
textarea();
if (stringinput.contains("1")) {
chatfunction();
}
userinput.setText("");
}
});
}
public void chatfunction() {
userinput.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
textarea();
if (stringinput.contains("hi")) {
botreply("Hello there!");
} else if (stringinput.contains("how are you")) {
int decider = (int) (Math.random() * 2 + 1);
if (decider == 1) {
botreply("I'm doing well, thanks");
} else if (decider == 2) {
botreply("Not too bad");
}
} else {
int decider = (int) (Math.random() * 3 + 1);
if (decider == 1) {
botreply("I didn't get that");
} else if (decider == 2) {
botreply("Please rephrase that");
} else if (decider == 3) {
botreply("???");
}
}
}
});
}
public void botreply(String s) {
scriptarea.append("AI: " + s + "\n");
}
public static void main(String[] args) {
new GUItest2();
}
}
答案 0 :(得分:1)
您的问题有几个原因;
首先,您已声明userinput.addActionListener
两次,这导致textarea()
方法在文本框提交值时被调用两次。
其次,您不能在userinput
方法中的ActionListener
末尾重置chatfunction()
。这就是它打印原始输入两次的原因。
最后,每当调用textarea()
方法时,您都会检索userinput的值并将其附加到聊天中,无论它是什么。考虑添加if语句以首先检查是否有要附加的输入。例如if(!stringinput.equals("")) scriptarea.append("[You] " + stringinput + "\n");
正如Pshemo上面所说,您应该寻求解决的代码流程存在其他问题,即从另一个内部调用新的ActionListener
。