我在StyledText内有一个ScrolledComposite小部件(SWT),该小部件应显示日志文件的内容。不幸的是,日志文件中包含成千上万行,因此我到了小工具在约2200行之后截断文本的地步。

我发现引用this postthis report指出Windows中的窗口小部件有高度限制,而我的理论是我已经达到该限制。

我的问题是我该如何处理。显示其中包含这么多行的文本的解决方法是什么?

编辑:
我发现只有在StyledText中使用ScrolledComposite时,才会发生这种情况。如果我使用普通的StyledText没问题。

这是要重现的代码:

import org.eclipse.swt.SWT;
import org.eclipse.swt.custom.ScrolledComposite;
import org.eclipse.swt.custom.StyledText;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;

public class StyledTextLimit {

    public static void main(String[] args) {
        Display display = new Display();
        Shell shell = new Shell(display);
        shell.setLayout(new FillLayout());

        ScrolledComposite scrollComp = new ScrolledComposite(shell,
                SWT.H_SCROLL | SWT.V_SCROLL);

        StyledText text = new StyledText(scrollComp, SWT.NONE);
        text.setSize(100, 500);

        scrollComp.setContent(text);
        scrollComp.setExpandHorizontal(true);
        scrollComp.setExpandVertical(true);

        StringBuilder builder = new StringBuilder();

        for (int i = 0; i < 5000; i++) {
            builder.append(i);

            builder.append(" ");

            for (int j = 'a'; j < 'a' + 200; j++) {
                builder.append((char) j);
            }

            builder.append("\n");
        }

        text.setText(builder.toString().trim());

        scrollComp.setMinSize(text.computeSize(SWT.DEFAULT, SWT.DEFAULT));


        // shell.pack();
        shell.open();
        while (!shell.isDisposed()) {
            if (!display.readAndDispatch())
                display.sleep();
        }
        display.dispose();
    }

}

最佳答案

我认为没有必要将StyledText包装到ScrolledComposite中。 StyledText在必要时单独显示滚动条。

我建议在不使用StyledText的情况下使用ScrolledComposite

StyledText当然也对它可以容纳的文本有限制。但是,此限制应远高于2200行。如果StyledText仍然溢出,则必须截断要显示的日志。

10-08 03:55