Java - 如何使用Document在JTextPane中添加文本

时间:2013-09-24 15:38:59

标签: java jtextpane

我想在我的Java应用程序中创建一个控制台(JTextPane)来显示我的应用程序在做什么。我尝试了很多次使用不同的方法但是失败了......这是我代码的一部分。

MainClass

private final Form form;

println("Downloading files...");

public void println(String line)
{
        System.out.println(line);
        form.getConsole().print(line);
}

形式(GUI)

private TabConsole console;

tabbedPane.addTab("Console", console);

public TabConsole getConsole()
{
        return console;
}

TabConsole

public void print(final String line) {
        if (!SwingUtilities.isEventDispatchThread()) {
          SwingUtilities.invokeLater(new Runnable()
          {
            public void run() {
              TabConsole.this.print(line);
            }
          });
          return;
        }

        Document document = this.console.getDocument();
        JScrollBar scrollBar = getVerticalScrollBar();
        boolean shouldScroll = false;

        if (getViewport().getView() == this.console) {
          shouldScroll = scrollBar.getValue() + scrollBar.getSize().getHeight() + MONOSPACED.getSize() * 4 > scrollBar.getMaximum();
        }
        try
        {
          document.insertString(document.getLength(), line, null);
        } catch (BadLocationException localBadLocationException) {
        }
        if (shouldScroll)
          scrollBar.setValue(2147483647);
      }

我的代码有什么问题吗?谢谢你的帮助。

1 个答案:

答案 0 :(得分:0)

将BadLocationException重新抛出为RuntimeException,尽管代码看起来是正确的。你得到什么错误?

如果文本没有显示,您可能正在更新错误的文档。确保您正在更新TextArea使用的文档,或者您正在使用的任何内容来显示内容。