- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的问题如下:
我想让我的小 HTML 编辑器的用户在两者之间切换输入文本的不同背景颜色。我第一次尝试为此目的使用 CSS 样式。不同的风格定义不同的背景颜色和通过一个JComboBox
用户可以在这些样式之间切换。在选择样式后各自在HTMLDocument
里面的位置一个新的 HTML 元素类型 <span class="style">
将被输入。不幸的是,我无法完成这项工作。跨度元素根本就没有创建 ( see my question regarding this problem )。
中间我看了一下类StyledEditorKit.ForegroundAction
了解其功能。执行后,它只是修改了StyledEditorKit
的输入属性在使用中设置一个新的前景色。之后输入的文本显示为新的前景色。在将 HTML 代码写入文件时,文本自动包含在 <font color=".."> ... </font>
中HTML 元素。所有这些甚至适用于选定的文本遍历多个段落。在这种情况下,显然受影响的所有受影响段落中的文本都包含在 <font ...>
中HTML 标签。
我想完成设置背景的相同功能任意文本 block 上的颜色。但令人惊讶的是,这似乎并不如此简单:-(
我没有找到用于该目的的预定义操作类类似于 StyledEditorKit.foregroundAction
在 Java 7 JDK 中。创造这样的类看起来并不复杂;它几乎和 ForegroundAction
与 actionPerformed
方法更改为设置background 而不是 foreground 属性。
但是如何创 build 置特定背景的有效 HTML 代码所含文本部分的颜色?直到现在我都不知道 HTMLEditorKit
的哪一部分执行创建所有 <font>
HTMLDocument
中的文本元素那设置了前景属性。我认为从现有的代码创建 <font>
元素不应该太难推导出一个创建 <span style="background-color:...">
的实现元素而不是 <font>
用于设置背景颜色的元素对于任意文本区域。或者这一切都已经可用了,我只是没有注意到?任何帮助将不胜感激!
在此期间,我向前迈出了重要的一步,感谢发现的一段代码 here我设法创建了有效的 <span>
元素。在 span 元素中,我使用 class
属性来分配预定义的样式。
这是我的代码:
import java.awt.BorderLayout;
import java.awt.Container;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.util.Enumeration;
import java.util.Vector;
import javax.swing.AbstractAction;
import javax.swing.Action;
import javax.swing.DefaultComboBoxModel;
import javax.swing.JComboBox;
import javax.swing.JFileChooser;
import javax.swing.JFrame;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JOptionPane;
import javax.swing.JTextPane;
import javax.swing.JToolBar;
import javax.swing.text.AttributeSet;
import javax.swing.text.BadLocationException;
import javax.swing.text.MutableAttributeSet;
import javax.swing.text.SimpleAttributeSet;
import javax.swing.text.Style;
import javax.swing.text.StyleContext;
import javax.swing.text.html.HTML;
import javax.swing.text.html.HTMLDocument;
import javax.swing.text.html.HTMLEditorKit;
import javax.swing.text.html.StyleSheet;
public class SimpleEditor extends JFrame {
private static final long serialVersionUID = 1L;
private final JTextPane textPane;
private final HTMLEditorKit edtKit;
private final HTMLDocument doc;
private final StyleSheet predefStyles;
public static void main(String[] args) throws BadLocationException, IOException {
final SimpleEditor editor = new SimpleEditor();
editor.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
editor.setVisible(true);
}
public SimpleEditor() throws BadLocationException, IOException {
super("Very Simple HTML Editor");
textPane = new JTextPane();
edtKit = new HTMLEditorKit();
textPane.setEditorKit(edtKit);
predefStyles = new StyleSheet();
predefStyles.addRule(".MyStyle1 { color:#cc0000; background-color:silver }\n" +
".MyStyle2 { color:#0000cc; background-color:aqua }");
doc = new HTMLDocument(predefStyles);
textPane.setDocument(doc);
final Container content = getContentPane();
content.add(textPane, BorderLayout.CENTER);
content.add(createToolBar(), BorderLayout.NORTH);
setJMenuBar(createMenuBar());
setSize(500, 240);
}
private JToolBar createToolBar() {
final Vector<String> styleNames = new Vector<String>();
final Enumeration<?> names = predefStyles.getStyleNames();
while (names.hasMoreElements()) {
styleNames.add((String) names.nextElement());
}
final DefaultComboBoxModel<String> stylesModel =
new DefaultComboBoxModel<String>(styleNames);
final JComboBox<String> cbStyleSel = new JComboBox<String>(stylesModel);
final JToolBar bar = new JToolBar();
Action dumpAction = null;
for (final Action act : edtKit.getActions()) {
if (act.getValue(Action.NAME).equals("dump-model")) {
dumpAction = act;
break;
}
}
bar.add(dumpAction);
cbStyleSel.setEditable(false);
cbStyleSel.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
e.getSource();
@SuppressWarnings("unchecked")
final JComboBox<CondStyle> cboStyleSel = (JComboBox<CondStyle>) e.getSource();
final String selItem = (String) cboStyleSel.getSelectedItem();
final MutableAttributeSet divAttributes = new SimpleAttributeSet();
if (selItem.equals("default")) {
// This does not work!
final Style defStyle = StyleContext.getDefaultStyleContext().getStyle(StyleContext.DEFAULT_STYLE);
divAttributes.addAttribute(HTML.Tag.CONTENT, defStyle);
textPane.setCharacterAttributes(divAttributes, true);
} else {
divAttributes.addAttribute(HTML.Attribute.CLASS, selItem.substring(1));
final MutableAttributeSet tagAttributes = new SimpleAttributeSet();
tagAttributes.addAttribute(HTML.Tag.SPAN, divAttributes);
textPane.setCharacterAttributes(tagAttributes, false);
}
textPane.requestFocusInWindow();
}
});
bar.add(cbStyleSel);
return bar;
}
/**
* Extracts the style attributes except the style's name
* @param aStyle The style to be processed
* @return The visual attributes extracted from the style
*/
AttributeSet extractStyleAttribs(Style aStyle) {
final MutableAttributeSet attribs = new SimpleAttributeSet();
final Enumeration<?> attribNames = aStyle.getAttributeNames();
while (attribNames.hasMoreElements()) {
final Object attribName = attribNames.nextElement();
if (attribName == Style.NameAttribute) {
continue;
}
attribs.addAttribute(attribName, aStyle.getAttribute(attribName));
}
return attribs;
}
private JMenuBar createMenuBar() {
final JMenuBar menubar = new JMenuBar();
final JMenu mnuFile = new JMenu("File");
menubar.add(mnuFile);
final SaveAction actSave = new SaveAction();
mnuFile.add(actSave);
return menubar;
}
class SaveAction extends AbstractAction {
private static final long serialVersionUID = 1L;
public SaveAction() {
super("Save");
}
@Override
public void actionPerformed(ActionEvent ev) {
final JFileChooser chooser = new JFileChooser();
if (chooser.showSaveDialog(SimpleEditor.this) != JFileChooser.APPROVE_OPTION)
return;
final File file = chooser.getSelectedFile();
if (file == null)
return;
FileWriter writer = null;
try {
writer = new FileWriter(file);
textPane.write(writer);
} catch (final IOException ex) {
JOptionPane.showMessageDialog(SimpleEditor.this,
"File Not Saved", "ERROR",
JOptionPane.ERROR_MESSAGE);
} finally {
if (writer != null) {
try {
writer.close();
} catch (final IOException x) {
}
}
}
}
}
}
到目前为止一切顺利!这个解决方案的唯一问题是我无法实现从 <span>
中包含的文本返回的切换。元素到“普通”文本,即未放置在 <span>
内的文本元素。这应该没什么大不了的,但不幸的是我无法弄清楚如何才能做到这一点。任何想法都将非常受欢迎!
最佳答案
我明白了!这太简单了;-)使用 <span>
从带样式的文本条目切换回元素我只需要删除 HTML.Tag.SPAN
来自当前文本的输入属性的属性。这是按如下方式完成的:
edtKit.getInputAttributes().removeAttribute(HTML.Tag.SPAN);
因此,我在(更新的)问题中发布的示例代码中的 ActionListener 代码现在如下所示:
cbStyleSel.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
e.getSource();
@SuppressWarnings("unchecked")
final JComboBox<CondStyle> cboStyleSel = (JComboBox<CondStyle>) e.getSource();
final String selItem = (String) cboStyleSel.getSelectedItem();
if (selItem.equals("default")) {
edtKit.getInputAttributes().removeAttribute(HTML.Tag.SPAN);
} else {
final MutableAttributeSet divAttributes = new SimpleAttributeSet();
divAttributes.addAttribute(HTML.Attribute.CLASS, selItem.substring(1));
final MutableAttributeSet tagAttributes = new SimpleAttributeSet();
tagAttributes.addAttribute(HTML.Tag.SPAN, divAttributes);
textPane.setCharacterAttributes(tagAttributes, false);
}
textPane.requestFocusInWindow();
}
});
我已经发布了多个关于我在实现该功能时遇到的问题(请参阅 here 和 here )但没有得到任何答案。也许这个问题太微不足道了;-)
关于java - 如何在使用 HTMLEditorKit 构建的 HTML 编辑器中提供更改文本部分背景颜色的功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17840914/
我正在尝试在 JTextPane 中进行一些基本的格式化。为此,我决定使用 html(HTMLDocument 和 HTMLEditorKit)。 这里是按钮的操作监听器代码,应使所选文本变为粗体 b
HTMLEditorKit.insertHTML(doc, doc.getLength(), "Test", 0, 0, null); 结果: "Test " -添加'\n' HTMLEditorKi
这是我的代码。 editPane 是一个 JEditorPane。HTMLKit 是分配给 editPane 的 HTMLEditorKit。 try { HTMLKit.insertHTML(
我想用 JEditorPane 创建一个简单的测试应用程序显示一些 HTML 内容和一个使所选文本加粗的按钮。 HTMLEditorKit已经为这个按钮提供了必要的操作,所以我可以像这样用复杂的代码来
当我运行以下代码时: import java.io.IOException; import java.io.Reader; import java.io.StringReader; import ja
我是一个新手 Java 程序员,正在尝试使用 HTMLEditorKit 库遍历 HTML 文档并将其更改为我的链接(主要是为了好玩,我正在做的事情可以在手上完成而不会出现问题) 但我的问题是:在我修
我的一个应用程序(一个基本的 IRC 工具)遇到以下问题,该工具使用“HTMLEditorKit”作为输出 GUI 将消息添加到“JTextPane”。我注意到,随着时间的推移,我的应用程序随机地使用
下面的代码片段存在问题,如果在包含小程序窗口的浏览器中按下重新加载按钮,它将无法工作。它在小程序第一次启动时起作用,但在重新加载时不起作用。同样的事情也发生在 AppletViewer 中。 原因是
我相信 JEditorPane .我需要简单的编辑器。我已经解决了加载和修改包含自定义(两个)标签的 HTML 的问题(参见 my older post )。它可以正确显示文档,我现在甚至可以编辑它。
我使用说明添加我自己的标签 http://java-sl.com/custom_tag_html_kit.html class MyParserDelegator extends ParserDele
我有一个普通的 HTMLEditorKit() 对象: historyKit = new HTMLEditorKit(); historyDoc = new HTMLD
我遇到以下问题,即我将 JTextPane 与 HTMLEditorKit 结合使用,并向 Pane 动态添加内容。内容可以超过几行,还包含大量图像(小图标)。现在的问题是,如果我插入例如一堆带有图标
我的源代码在下面。 我只想控制字体颜色的 css。 我像这样插入 HTML。 I love apple pie. 在 tag1 的情况下,我希望“我爱苹果”变成红色字体。 但只有“我爱”变成红色字体。
HTMLEditorKit 是否正确在呈现 HTML 内容时忽略如下所示的标签(用于在 IE7+ 浏览器中模拟 IE7)? 有关 HTMLEditorKit 的文档提到它: ..supports H
我的问题如下: 我想让我的小 HTML 编辑器的用户在两者之间切换输入文本的不同背景颜色。我第一次尝试为此目的使用 CSS 样式。不同的风格定义不同的背景颜色和通过一个JComboBox用户可以在这些
我正在尝试实现一个基本的文本编辑器,其中包含字体、粗体、斜体、下划线和颜色选项。我使用了 JEditorPane 和关联的 HTMLEditorKit,但是当我加载一个 400K 的文档时,它需要整整
我正在使用 JTextPane 编辑 HTML,当我使用 getText() 和 setText() 方法时,它会更改我的文本。 例如,如果我使用 setter 方法设置此文本。 ESTO E
我想借助 java 的 HTMLEditorKit 检索 TITLE 属性?这是我写的,但它会一直返回“null”,而 Eclipse 中的检查器并没有多大帮助! import java.io.Fil
完整源代码可以在 here 找到. 如何在源中重现: 运行程序 点击粗体按钮 输入一些内容 转到粗体文本内的某个位置 点击斜体按钮 输入更多内容 请注意斜体文本不是粗体。 MCVE: 给你。大部分是由
我正在使用 JTextPane 实现一个简单的 HTML 编辑器, HTMLDocument和HTMLEditorKit 。代码如下: public class SimpleHTMLEditor ex
我是一名优秀的程序员,十分优秀!