我测试了这段代码以在几行上显示字符串:
TextArea dataPane = new TextArea();
dataPane.setEditable(false);
dataPane.prefWidthProperty().bind(hbox.widthProperty());
dataPane.setWrapText(true); // New line of the text exceeds the text area
dataPane.setPrefRowCount(10);
dataPane.setText("Testdata");
dataPane.setText("\ndata");
但结果我只得到了 String data
。在 JavaFX 中多行显示字符串的正确方法是什么?