如何使用for循环将setText()放在JTextArea中?

时间:2017-10-13 16:50:16

标签: for-loop jtextarea windowbuilder

所以我正在制作这个程序(WindowBuilder)。用户在textField和另一个textField中放置一个单词,他希望在JTextArea中重复多少次。

私有类BtnRepeterActionListener实现ActionListener {         public void actionPerformed(ActionEvent arg0){

    String texte = textField.getText();

    for (int i = Integer.parseInt(textField2.getText()); i >0; i++){
        texte = texte + "\n";
    }
    textArea.setText(texte); 

    }

只要点击我的按钮,此代码就会冻结程序。我试着把"返回"但这会产生错误。我不知道接下来该做什么。

编辑**:放i--而不是i ++将我的文本放在textArea中。 但它并不想用我在第二个textField中提供的数字重复这个单词。 This image shows the program. When I type a number in the Repetition textField, I want the text to repeat times the number I provided. So if I type 4, it should repeat 4 times.

抱歉我的英文。

0 个答案:

没有答案