- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我将一个JTextPane
放入了一个JScrollPane
。正如我所尝试的那样,如果 JTextPane
超过显示区域的宽度,它会自动换行。并且自动换行基于字边界
,例如空格
字符。
我的内容包含很多空间
。我想按 literally
显示它。所以我需要自动换行,但我希望它仅
在显示区域的最大宽度处发生,不
在字边界
处发生。
如何?
我尝试过的:
单个大字
。下面是我阅读 StanislavL's solution 后失败的尝试.我并不是在责怪他的解决方案,因为我的情况与他的情况并不完全相同。
StanislavL
的解决方案要求一行至少包含 2 个 LabelView
。根据他的说法,这是由 Swing
实现的 layout()
方法强加的,只有当行 View 有多个 subview 时强制中断才起作用
(参见:http://java-sl.com/wrap.html)。因此 StanislavL
故意 为 \r
字符分配了一个特殊属性,以确保单独的 LabelView
。并使用 \r
作为包装的地标。但在我的场景中,我无法在我的内容中插入任何字符。
我的想法很简单,只是为 StyledEditorKit
提供一个自定义的 ViewFactory
实现,因为 ViewFactory
接口(interface)决定了断重以及如何休息应该发生:
this.jTextPane.setEditorKit(new StyledEditorKit(){
@Override
public ViewFactory getViewFactory(){
return new LetterWrappingStyledViewFactory(maxCharWidth);
}
});
下面是我对ViewFactory
接口(interface)的实现:
public class LetterWrappingStyledViewFactory implements ViewFactory {
public int maxCharWidth = -1; // this is the max width where I want wrap to happen.
public LetterWrappingStyledViewFactory(int maxCharWidth) {
this.maxCharWidth = maxCharWidth;
}
public View create(Element elem) {
String kind = elem.getName();
if (kind != null) {
if (kind.equals(AbstractDocument.ContentElementName)) {
return new LabelView(elem) {
public int getBreakWeight(int axis, float pos, float len) {
if (axis == View.X_AXIS) {
checkPainter();
int p0 = getStartOffset();
int p1 = getGlyphPainter().getBoundedPosition(this, p0, pos, len);
if (p1 > maxCharWidth)
return View.ForcedBreakWeight;
else
return View.BadBreakWeight;
}
return super.getBreakWeight(axis, pos, len);
}
public View breakView(int axis, int p0, float pos, float len) {
if (axis == View.X_AXIS) {
checkPainter();
int p1 = getGlyphPainter().getBoundedPosition(this, p0, pos, len);
if (p0 == getStartOffset() && p1 <= maxCharWidth) {
return this;
}
return createFragment(p0, maxCharWidth);
}
return this;
}
};
} else if (kind.equals(AbstractDocument.ParagraphElementName)) {
return new ParagraphView(elem);
} else if (kind.equals(AbstractDocument.SectionElementName)) {
return new BoxView(elem, View.Y_AXIS);
} else if (kind.equals(StyleConstants.ComponentElementName)) {
return new ComponentView(elem);
} else if (kind.equals(StyleConstants.IconElementName)) {
return new IconView(elem);
}
}
// default to text display
return new LabelView(elem);
}
}
最佳答案
此示例适用于 StyledEditorKit(使用 java 7 测试)
import javax.swing.*;
import javax.swing.text.*;
public class WrapApp extends JFrame {
JEditorPane edit=new JEditorPane();
public WrapApp() {
super("Wrap in the mid");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
edit.setEditorKit(new WrapEditorKit());
edit.setText("111 222 333333333333333333333333333333333333333333333");
getContentPane().add(new JScrollPane(edit));
setSize(200,200);
setLocationRelativeTo(null);
}
public static void main(String[] args) {
WrapApp m = new WrapApp();
m.setVisible(true);
}
}
class WrapEditorKit extends StyledEditorKit {
ViewFactory defaultFactory=new WrapColumnFactory();
public ViewFactory getViewFactory() {
return defaultFactory;
}
}
class WrapColumnFactory implements ViewFactory {
public View create(Element elem) {
String kind = elem.getName();
if (kind != null) {
if (kind.equals(AbstractDocument.ContentElementName)) {
return new WrapLabelView(elem);
} else if (kind.equals(AbstractDocument.ParagraphElementName)) {
return new ParagraphView(elem);
} else if (kind.equals(AbstractDocument.SectionElementName)) {
return new BoxView(elem, View.Y_AXIS);
} else if (kind.equals(StyleConstants.ComponentElementName)) {
return new ComponentView(elem);
} else if (kind.equals(StyleConstants.IconElementName)) {
return new IconView(elem);
}
}
// default to text display
return new LabelView(elem);
}
}
class WrapLabelView extends LabelView {
public WrapLabelView(Element elem) {
super(elem);
}
public int getBreakWeight(int axis, float pos, float len) {
if (axis == View.X_AXIS) {
checkPainter();
int p0 = getStartOffset();
int p1 = getGlyphPainter().getBoundedPosition(this, p0, pos, len);
if (p1 == p0) {
// can't even fit a single character
return View.BadBreakWeight;
}
return View.GoodBreakWeight;
}
return super.getBreakWeight(axis, pos, len);
}
public float getMinimumSpan(int axis) {
switch (axis) {
case View.X_AXIS:
return 0;
case View.Y_AXIS:
return super.getMinimumSpan(axis);
default:
throw new IllegalArgumentException("Invalid axis: " + axis);
}
}
public View breakView(int axis, int p0, float pos, float len) {
if (axis == View.X_AXIS) {
checkPainter();
int p1 = getGlyphPainter().getBoundedPosition(this, p0, pos, len);
GlyphView v = (GlyphView) createFragment(p0, p1);
return v;
}
return super.breakView(axis, p0, pos, len);
}
}
更新:
关于 GlyphPainter。事实上,我们应该找到一个可以打破 GlyphView 的位置(this
在 getBoundedPosition() 中过去)。 p0表示文档中的char偏移量(GlyphView表示Character元素或Element的片段))想象一下一大串文本。在文档中它只是一个元素,因为它具有所有相同的属性。但是我们必须创建多个 LabelView,因为文本片段太大而无法容纳可用宽度。因此,对于第一个标签,p0 为 0。然后对于下一个标签,是我们打破初始巨大 View 的偏移量。如果我们再次打破它,那么另一个抵消。然后 2 个参数只代表容器的 x 位移和宽度(例如父 View )。
所以我们有一个大文本,应该找到中断的地方。当前的方法更简单,因为我们不关心优先级(空格与其他字符)。
关于java - 如何 : JTextPane auto wrapping NOT on word boundary such as "space", 但在字母边界上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30501191/
我是一名优秀的程序员,十分优秀!