自动向下滚动 TextArea

Auto scroll down a TextArea

我有一个 TextArea,当我在其中添加文本 时 不会向下滚动。我想使用 this answer,但我的 TextArea 像这样连接到 StringProperty :

consoleTextArea.textProperty().bind(textRecu);

所以答案对我不起作用,有没有另一种方法让我的TextArea每次更新时向下滚动 通过绑定?

这是我在评论中关于向 textRecu 添加侦听器的意思的快速演示。是的 consoleTextArea.textProperty() 由于绑定而无法更改。但是 textRecu 没有绑定 => 可以更改,我们可以给它添加监听器。

import javafx.application.Application;
import javafx.beans.property.SimpleStringProperty;
import javafx.beans.property.StringProperty;
import javafx.beans.value.ChangeListener;
import javafx.beans.value.ObservableValue;
import javafx.event.EventHandler;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.TextArea;
import javafx.scene.input.MouseEvent;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;

public class Main extends Application {
    private StringProperty textRecu = new SimpleStringProperty();
    private TextArea consoleTextArea = new TextArea();

    @Override
    public void start(Stage primaryStage) throws Exception{
        VBox root = new VBox();

        Button button = new Button("Add some text");
        button.setOnMouseClicked(new EventHandler<MouseEvent>() {
            @Override
            public void handle(MouseEvent event) {
                //here you change textRecu and not consoleTextArea.textProperty()
                textRecu.setValue(textRecu.getValue() +"New Line\n");
            }
        });

        root.getChildren().addAll(consoleTextArea, button);
        consoleTextArea.textProperty().bind(textRecu);

        //here you also add listener to the textRecu 
        textRecu.addListener(new ChangeListener<Object>() {
            @Override
            public void changed(ObservableValue<?> observable, Object oldValue,
                                Object newValue) {
                // from whosebug.com/a/30264399/1032167
                // for some reason setScrollTop will not scroll properly
                //consoleTextArea.setScrollTop(Double.MAX_VALUE);
                  consoleTextArea.selectPositionCaret(consoleTextArea.getLength()); 
                  consoleTextArea.deselect(); 
            }
        });

        primaryStage.setScene(new Scene(root, 300, 275));
        primaryStage.show();
    }


    public static void main(String[] args) {
        launch(args);
    }
}