JTextPane / JEditorPane和奇怪的文本问题

时间:2012-07-09 22:44:18

标签: java swing jtextpane jeditorpane

我正在创建一个简单的聊天程序,我想最终显示HTML链接。我现在的问题是我无法将文本显示在我想要的用户名旁边。

我希望用户的名称为粗体,并且文本显示在其旁边,但由于某种原因,非粗体文本显示为居中。

如果我没有粗引用户名,则可以正常使用。前两个是我的名字用粗体显示的方式,中间是名字没有粗体的时候,底部显示的是我想让它看起来像中间两个的超链接,但名字用粗体显示。

enter image description here

这是代码,我做错了什么?请注意,我尝试用JEditorPane替换JTextPane,同样的事情发生了。

package com.test;

import java.awt.BorderLayout;
import java.awt.Color;

import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTextPane;
import javax.swing.WindowConstants;
import javax.swing.event.HyperlinkEvent;
import javax.swing.event.HyperlinkEvent.EventType;
import javax.swing.event.HyperlinkListener;
import javax.swing.text.BadLocationException;
import javax.swing.text.SimpleAttributeSet;
import javax.swing.text.StyleConstants;
import javax.swing.text.html.HTML;

public class JTextPaneTest extends JPanel {

    JTextPane pane;

    public JTextPaneTest() {
        this.setLayout(new BorderLayout());

        pane = new JTextPane();
        pane.setEditable(false);
        pane.setContentType("text/html");

        JScrollPane scrollPane = new JScrollPane(pane);
        this.add(scrollPane, BorderLayout.CENTER);

        pane.addHyperlinkListener(new HyperlinkListener() {

            @Override
            public void hyperlinkUpdate(HyperlinkEvent e) {
                if (e.getEventType() == EventType.ACTIVATED) {
                    System.out.println(e.getDescription());
                }

            }
        });

    }

    public void chatWithBold(String user, String text) {

        SimpleAttributeSet bold = new SimpleAttributeSet();
        StyleConstants.setBold(bold, true);

        SimpleAttributeSet normal = new SimpleAttributeSet();

        try {
            pane.getDocument().insertString(pane.getDocument().getLength(),
                    user + ": ", bold);
        } catch (BadLocationException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

        try {
            pane.getDocument().insertString(pane.getDocument().getLength(),
                    text + "\n", normal);
        } catch (BadLocationException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }

    public void chatNoBold(String user, String text) {

        SimpleAttributeSet bold = new SimpleAttributeSet();
        StyleConstants.setBold(bold, true);

        SimpleAttributeSet normal = new SimpleAttributeSet();

        try {
            pane.getDocument().insertString(pane.getDocument().getLength(),
                    user + ": ", normal);
        } catch (BadLocationException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

        try {
            pane.getDocument().insertString(pane.getDocument().getLength(),
                    text + "\n", normal);
        } catch (BadLocationException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }

    private void submitALinkWithBold(String user, String link) {
        SimpleAttributeSet bold = new SimpleAttributeSet();
        StyleConstants.setBold(bold, true);

        try {
            pane.getDocument().insertString(pane.getDocument().getLength(),
                    user + ": ", bold);
        } catch (BadLocationException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

        SimpleAttributeSet attrs = new SimpleAttributeSet();
        attrs.addAttribute(HTML.Attribute.HREF, link);

        SimpleAttributeSet htmlLink = new SimpleAttributeSet();
        htmlLink.addAttribute(HTML.Tag.A, attrs);
        StyleConstants.setUnderline(htmlLink, true);
        StyleConstants.setForeground(htmlLink, Color.BLUE);
        try {
            pane.getDocument().insertString(pane.getDocument().getLength(),
                    link + "\n", htmlLink);
        } catch (BadLocationException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

    }

    public static void main(String[] args) {
        JFrame frame = new JFrame();

        JTextPaneTest chat = new JTextPaneTest();
        frame.add(chat);

        frame.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);

        chat.chatWithBold("User1", "Hi everyone");
        chat.chatWithBold("User2", "Hey.. Hows it going");

        chat.chatNoBold("User1", "Hi everyone");
        chat.chatNoBold("User2", "Hey.. Hows it going");

        chat.submitALinkWithBold("User1", "http://www.stackoverflow.com");

        frame.setSize(400, 400);

        frame.setVisible(true);

    }

}

1 个答案:

答案 0 :(得分:3)

我只是玩了一下并搜索了一下,找到了以下解决方案:

使用以下内容设置内容类型后初始化JTextPane

final String emptyHtml = "<html><body id='bodyElement'></body></html>";
pane.getEditorKit().read(new StringReader(emptyHtml), pane.getDocument(), 0);

之后初始化以下两个新字段(将在方法中使用,仅为方便起见):

this.doc = (HTMLDocument) pane.getDocument();
this.bodyElement = this.doc.getElement("bodyElement");

现在您可以像这样更改方法submitALinkWithBold

final String html =  "<p><b>" + user + ": </b>"
    + "<a href='" + link + "'>" + link + "</a></p>";
doc.insertBeforeEnd(bodyElement, html);

您应该能够将此方案应用于其他两种方法(chatWithBoldchatNoBold)。

请注意,在更改所有方法之前,结果看起来不太好(或根本不起作用)。另请注意,即使更改了所有方法后,它也不像原始示例(较大的行间距,其他字体...)。我认为可以通过将pane.getEditorKit()转换为HTMLEditorKit并使用其setStyleSheet(…)方法来修复此问题,但我没有尝试过。