JavaFX Alert无法容纳内容

时间:2017-05-02 14:29:53

标签: java javafx alert

我一直试图将一个大字符串显示为警报失败。

public void customAlert(String header, String body, ButtonType customBtn) {
    clearAlert();
    alert.setHeaderText(header);
    //alert.setContentText(body);
    String content = "";
    int counter = 1;

    int y=0;
    for (int x = 0; x < body.length(); ++x) {
     //    System.err.println("concat");
        if (x > counter * 50 && body.charAt(x) == ' ') {
          //  System.err.println("concat");
            ++counter;
            for (; y < x; ++y) {
                content.concat(Character.toString(body.charAt(y)));

            }
            content.concat(Character.toString('\n'));
           // System.err.println(content);
        }
    }
    alert.getDialogPane().setContent(new Label(content));

    alert.getDialogPane().setMaxWidth(500);

    if (customBtn != null) {
        alert.getButtonTypes().clear();
        alert.getButtonTypes().add(customBtn);
    }
    alert.showAndWait();
}

首先我尝试使用setContentText()并且它没有显示整个字符串。然后我使用了alert.getDialogPane()。setContent(new Label(body)); - 但警报框变得比屏幕尺寸宽。然后我尝试过滤String添加的换行符并将maxWidth设置为警报,但过滤不起作用。

1 个答案:

答案 0 :(得分:1)

对于长文本,最好在TextArea中显示它:

TextArea textArea = new TextArea(text);
textArea.setPrefColumnCount(40);
textArea.setPrefRowCount(20);
textArea.setEditable(false);
textArea.setWrapText(true);
alert.getDialogPane().setContent(textArea);