当我按下按钮时,我试图将来自JTextField的输入分割成一个单词数组。当我按下按钮时,程序给了我一个巨大的错误列表。分割句子的代码行和我在动作监听器中调用类的位置是eclipse说错误来自的地方。我不知道为什么我收到此错误,我不知道如何修复。我尝试了很多不同的东西,但它们不起作用。如果你能解释为什么这不起作用或如何解决这将是伟大的。这是我的代码。谢谢你的帮助。
主要类:
public class Control {
public static void main(String[] args) {
OpenWindow ow = new OpenWindow();
ow.window();
}
}
第二课:
public class OpenWindow extends JFrame{
//Making variables
String input;
String firstWord2;
JButton jb = new JButton("Button");
JLabel jl = new JLabel();
JTextField jtf = new JTextField(40);
JPanel jp1 = new JPanel(new GridLayout(3,1));
SentenceSplitter ss = new SentenceSplitter();
public void window() {
//Make window pop up
setTitle("Project");
setSize(600, 300);
setVisible(true);
setDefaultCloseOperation(EXIT_ON_CLOSE);
//Action Listener
jb.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
input = jtf.getText();
//Error from line below
ss.split();
firstWord2 = ss.getFirstWord();
jl.setText(firstWord2);
}
});
//Add JFrames
jp1.add(jtf);
jp1.add(jb);
jp1.add(jl);
add(jp1);
}
//Make input accesible from other classes
String getInput() {
return input;
}
}
第三类:
public class SentenceSplitter {
String firstWord;
public void split() {
OpenWindow ow2 = new OpenWindow();
//Get input
String sentence = ow2.getInput();
//Error from line below
String[] splitSentence = sentence.split(" ");
firstWord = splitSentence[0];
}
String getFirstWord() {
return firstWord;
}
}
答案 0 :(得分:2)
在您的代码中
创建OpenWindow
在OpenWindow对象中,您正在创建SentenceSplitter
并正在收听点击
点击您之前创建的split
SentenceSplitter
方法
在分割中,您正在创建新的OpenWindow
您应该做的是将String作为输入参数传递给split
方法