有没有办法将 css 文件附加到 jEditorPane?

发布于 2024-08-04 21:46:31 字数 110 浏览 4 评论 0原文

足够简单的问题:我有一个包含 HTML 的字符串,该字符串正在传递给 JEditorPane 供用户使用。

我可以附加 CSS 文件(或包含 CSS 规则的字符串)以允许更具体的文本样式吗?

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 CSS rules) to allow for more specific styling of the text?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

柳若烟 2024-08-11 21:46:31

HTMLEditorKit 默认情况下会查找文件 default.css - 但我不确定在哪里。

或者,这应该有效:

StyleSheet ss = new StyleSheet();
ss.importStyleSheet(styleSheetURL);
HTMLEditorKit kit = (HTMLEditorKit)jEditorPane.getEditorKit();
kit.setStyleSheet(ss);

但是,请注意 HTMLEditorKit 仅支持 CSS 1 的有限子集

The HTMLEditorKit per default looks for a file default.css - I'm not sure where, though.

Alternatively, this should work:

StyleSheet ss = new StyleSheet();
ss.importStyleSheet(styleSheetURL);
HTMLEditorKit kit = (HTMLEditorKit)jEditorPane.getEditorKit();
kit.setStyleSheet(ss);

However, note that HTMLEditorKit only supports a limited subset of CSS 1.

单调的奢华 2024-08-11 21:46:31

难道不能在 setText() 中只包含一个样式标签和 HTML 内容吗?

例如

jEditorPane.setText( "<html><head><style type=\"text/css\">...</style></head><body>...");

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

e.g.

jEditorPane.setText( "<html><head><style type=\"text/css\">...</style></head><body>...");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文