style= "display: none"属性在 JTextPane 中不起作用



我正在使用JTextPane在java中创建html编辑器。属性样式 ="显示:无"似乎没有按预期在这里工作。在这里帮帮我。我的代码是:

JTextPane basePane = new JTextPane(); 
basePane.setEditorKit(JEditorPane.createEditorKitForContentType("text/html"));
basePane.setContentType("text/html");
basePane.setText("<html><body><p style="display: none" >hello world!</p></body></html>");

字符串"Hello World!"仍在打印中。我尝试使用div 标签并在那里放置 style="display: none" 属性。它在那里也不起作用。在这里帮帮我!

提前感谢! ;)

我认为如果要

实现这一点,则需要创建自己的视图。JTextPane中对CSS的支持是非常部分的。

尝试这样的事情:

    //Create a view that inherites from InlineView and behave the way you want.
    //In your case, it should react to getAttributes().getAttribute(CSS.Attribute.DISPLAY);
    private class HideableView extends InlineView {
        public HideableView(Element elem) { super(elem); }
        //Implement your expected behaviour here
        @Override
        public void paint(Graphics g, Shape a){}
    }

    //Create a View Factory that will replace InlineViews by your custom View
    public static class HTMLBetterFactory extends HTMLEditorKit.HTMLFactory {
        @Override
        public View create(Element elem) {
            AttributeSet attrs = elem.getAttributes();
            Object elementName = attrs.getAttribute(AbstractDocument.ElementNameAttribute);
            Object o = (elementName != null) ? null : attrs.getAttribute(StyleConstants.NameAttribute);
            if (o == HTML.Tag.CONTENT) {
                if(attrs.getAttribute(CSS.Attribute.DISPLAY).toString().equals("none"))
                      return new HideableView(elem);
            }
            return super.create(elem);
        }
    }

//Create an HTMLEditorKit that will use your custom Factory
public class HTMLBetterEditorKit extends HTMLEditorKit {
    private final HTMLEditorKit.HTMLFactory factory = new HTMLBetterFactory();
        @Override
        public ViewFactory getViewFactory() {
            return factory;
        }
    }
}
//Import your HTMLEditorKit into your JTextPane
HTMLBetterEditorKit editorKit = new HTMLBetterEditorKit();
myJTextPane.setEditorKit(editorKit);

这适用于内联元素,但您可以为其他元素重现该过程。

我的用例略有不同,但可能仍然与最终来到这里的其他人相关。我在 JLabel 中渲染一些 HTML,并希望有条件地隐藏一些元素。我不需要任何动态可见性,所以我最终在 Java 中进行了预过滤,以防止我想要隐藏的元素甚至进入 HTML 源代码。

相关内容

  • 没有找到相关文章

最新更新