3

我注意到当 HTML JEditorPane 上有一个空行时,所有以前设置的样式都会消失。例如,请参见下面的代码示例:

import javax.swing.JEditorPane;
import javax.swing.JFrame;
import javax.swing.SwingUtilities;
import javax.swing.text.AttributeSet;
import javax.swing.text.StyleConstants;
import javax.swing.text.html.HTMLEditorKit;


public class BlankLineTester {
    private JEditorPane jep;

    public BlankLineTester() {
        String html = "<html><head></head><body>" +
                "<p><b>Line 1</b></p>" +
                "<p><b></b></p>" +
                "<p><b>Line 3</b></p>" +
                "</body></html>";

        jep = new JEditorPane();
        jep.setContentType("text/html");
        jep.setText(html);

        JFrame frame = new JFrame("Blank Line Test");
        frame.getContentPane().add(jep);
        frame.pack();
        frame.setVisible(true);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        System.out.println("Line 3 is " + isInputAttributeBold());

        jep.getCaret().setDot(8);
        System.out.println("Line 2 is " + isInputAttributeBold());

    }

    private boolean isInputAttributeBold() {
        AttributeSet attSet = ((HTMLEditorKit)jep.getEditorKit()).getInputAttributes();
        return StyleConstants.isBold(attSet);
    }

    public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
            @Override
            public void run() {
                new BlankLineTester();
            }
        });
    }
}

第2行最初设置为粗体空行,但解析后,似乎没有保留粗体属性。另请注意,如果您自己运行此程序,将光标放在第 3 行,然后删除该行中的所有内容,您输入的下一个字符将不会是粗体。我想当它们代表的文本消失时,HTMLDocument 树中的叶子元素正在被消除,但是当用户运行它时,这开始看起来像是错误的行为。

有没有人知道如何让样式属性在空行上解析,并在样式行上的所有内容被删除时保留?

谢谢!——安迪

4

1 回答 1

3

如果你这样写,而不是按照你的方式写,那么我想你会得到你的行为,看起来b & /b,标签是旧式的,虽然我使用的是 JRE 1.7 update 3,以下几行在这方面效果很好:

String html = "<html><head></head><body>" +
                "<p style = \"font-weight:bold\">Line 1</p>" +
                "<p style = \"font-weight:bold\"></p>" +
                "<p style = \"font-weight:bold\">Line 3</p>" +
                "</body></html>";

试试这段代码,当你运行程序时,试着把Delete你的光标移到开头来按下,然后它会保留 Color GREEN,因为这是你的鼠标指针触摸的最后一个字符的颜色,然后试着Backspace用你的光标按下到最后,它将保留 Color BLUE,因为这是鼠标指针触摸的最后一个字符的颜色。第三次,只需尝试在已经提供的两行之间的每一行中写一个单词,有一行将显示红色字符,尝试找到该行。我附上下面的图片以澄清红线场景。

import javax.swing.JEditorPane;
import javax.swing.JFrame;
import javax.swing.SwingUtilities;
import javax.swing.text.AttributeSet;
import javax.swing.text.StyleConstants;
import javax.swing.text.html.HTMLEditorKit;


public class BlankLineTester {
    private JEditorPane jep;

    public BlankLineTester() {
        String html = "<html><head></head><body>" +
                "<p style = \"font-weight:bold; color: blue\">Line 1</p><br />" +
                "<p style = \"font-weight:bold; color: red\"></p><br />" +
                "<p style = \"font-weight:bold; color: green\">Line 3</p>" +
                "</body></html>";

        jep = new JEditorPane();
        jep.setContentType("text/html");
        jep.setText(html);

        JFrame frame = new JFrame("Blank Line Test");
        frame.getContentPane().add(jep);
        frame.pack();
        frame.setVisible(true);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        System.out.println("Line 3 is " + isInputAttributeBold());

        jep.getCaret().setDot(8);
        System.out.println("Line 2 is " + isInputAttributeBold());

    }

    private boolean isInputAttributeBold() {
        AttributeSet attSet = ((HTMLEditorKit)jep.getEditorKit()).getInputAttributes();
        return StyleConstants.isBold(attSet);
    }

    public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
            @Override
            public void run() {
                new BlankLineTester();
            }
        });
    }
}

字体样式

于 2012-04-12T04:45:06.150 回答