JavaFX TextArea包含String.split()的空行?

时间:2016-12-09 23:28:30

标签: java javafx split javafx-2 javafx-8

我一直试图解决这个问题一段时间但是不能让它发挥作用。基本上我有一个JavaFX TextArea,我想用最后一行输入构建一个名为CommandWrapper的新对象(即按下ENTER键后在插入符号上面的行)。每当我在键入命令后按下ENTER键它完美无缺,但由于某种原因我的String.split()函数不会得到空行,如果我没有输入下面的GIF中显示的命令灰:

https://gyazo.com/49ebd82be02fc271eeb7a879b194c63c

以下是有关该问题的代码:

package com.mswordhf.jnet.java.contollers;

import java.net.URL;
import java.util.Arrays;
import java.util.List;
import java.util.ResourceBundle;

import com.mswordhf.jnet.java.models.JnetModel;
import com.mswordhf.jnet.java.modules.CommandWrapper;

import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.control.TextArea;
import javafx.scene.input.KeyCode;

public class CmdController implements Initializable {

private JnetModel model;
private int clientIndex;

@FXML private TextArea commandTextArea;

public CmdController(JnetModel model, int clientIndex) {
    this.model = model;
    this.clientIndex = clientIndex;
}

@Override
public void initialize(URL url, ResourceBundle rb) {

    commandTextArea.setOnKeyPressed(keyEvent -> {

        if(keyEvent.getCode() == KeyCode.ENTER) {

            List<String> lines = Arrays.asList(commandTextArea.getText().split("\\n"));
            String command = lines.get(lines.size() - 1);

            System.out.println(command);

            if(command == "\n") {
                System.out.println("Worked");
            }else {
                CommandWrapper wrapper = new CommandWrapper(command);
                model.getClients().get(clientIndex).getHandle().sendModule(wrapper);

                if(!model.getCmdOutput.isRunning()) {
                    model.getCmdOutput.reset();
                    model.getCmdOutput.start();
                }
            }

        }

    });

    model.getCmdOutput.setOnSucceeded(event -> {

        for(String line : model.getCmdOutput.getValue()) {
            commandTextArea.appendText(line + "\n");
        }

        model.clearList();

    });

}

}

1 个答案:

答案 0 :(得分:1)

我真的不确定为什么,但是使用:

commandTextArea.setOnKeyReleased(keyevent -> {
    //code...
}

完全符合预期。