Is there a way to attatch a css file to a jEditorPane?

后端 未结 2 1170
小蘑菇
小蘑菇 2021-01-18 10:28

Simple enough question: I have a string containing HTML that is being handed off to a JEditorPane for user consumption.

Can I attach a CSS file (or string containing

2条回答
  •  栀梦
    栀梦 (楼主)
    2021-01-18 10:56

    Can't you just include a style tag along with the HTML content in setText()?

    e.g.

    jEditorPane.setText( "...");
    

提交回复
热议问题