当由HTMLEditorKit支持的JEditorPane包含<br>
标记后跟空行时,该行未正确呈现并且未正确处理插入符号。请考虑以下示例代码:
import java.awt.*;
import java.io.*;
import javax.swing.*;
import javax.swing.text.*;
import javax.swing.text.html.*;
public class HTMLEditorTest {
public static void main(String[] args) throws IOException, BadLocationException {
JFrame frame = new JFrame();
Reader stringReader = new StringReader("test<br><p>a");
HTMLEditorKit htmlKit = new HTMLEditorKit();
HTMLDocument htmlDoc = (HTMLDocument) htmlKit.createDefaultDocument();
htmlKit.read(stringReader, htmlDoc, 0);
JEditorPane editorPane = new JEditorPane();
editorPane.setEditorKit(htmlKit);
editorPane.setDocument(htmlDoc);
frame.getContentPane().add(BorderLayout.CENTER, new JScrollPane(editorPane));
frame.setBounds(100, 100, 500, 400);
frame.setVisible(true);
}
}
未呈现<br>
标记之后的空行。当插入符号位于&#39; a&#39;按下了向上箭头键,插入符号消失了:
在按下&#39; up&#39;:
之前按下&#39; up&#39;:
请注意&#39;测试&#39;之间的距离。和&#39; a&#39;太小了,插入符号消失了。
当您输入文本时,缺少的空行变为可见:
问题似乎是空行以0px的高度渲染,因此不可见,包括插入符号(如果它在该行上)。一旦该行具有内容,该内容将强制非零行高。
您是否知道简单解决方法/修复此问题?我估计在最糟糕的情况下,我必须写own editor kit(另请参阅here和here以获取JEditorPane中的自定义换行符)和/或custom tag(同时{{} 3}})。
答案 0 :(得分:0)
使用自定义编辑器套件找到解决方案:
public class MyEditorKit extends HTMLEditorKit {
private static final int MIN_HEIGHT_VIEWS = 10;
@Override
public ViewFactory getViewFactory() {
return new HTMLFactory() {
@Override
public View create(Element e) {
View v = super.create(e);
// Test for BRView must use String comparison, as the class is package-visible and not available to us
if ((v instanceof InlineView) && !v.getClass().getSimpleName().equals("BRView")) {
View v2 = new InlineView(e) {
@Override
public float getMaximumSpan(int axis) {
float result = super.getMaximumSpan(axis);
if (axis == Y_AXIS) {
result = Math.max(result, MIN_HEIGHT_VIEWS);
}
return result;
}
@Override
public float getMinimumSpan(int axis) {
float result = super.getMinimumSpan(axis);
if (axis == Y_AXIS) {
result = Math.max(result, MIN_HEIGHT_VIEWS);
}
return result;
}
@Override
public float getPreferredSpan(int axis) {
float result = super.getPreferredSpan(axis);
if (axis == Y_AXIS) {
result= Math.max(result, MIN_HEIGHT_VIEWS);
}
return result;
}
};
v = v2;
}
return v;
}
};
}
}
编辑器工具包返回自定义HTMLFactory。这个工厂为叶元素创建自定义的InlineView对象,其中InlineView的高度不能为0.它总是至少有一个MIN_HEIGHT_VIEW,我设置为10像素(使用默认字体大小合理地工作)。在渲染HTML仅供查看时,原始实现是有意义的,因为确实应该忽略<br>
标记之后的空行。但是对于编辑,用户可能希望在插入换行符之后在下一行看到插入符号。