我想将JTextPane
中的制表符字符\ t的大小设置为4个宽。
经过谷歌搜索后,我发现了一些我将在此处包含的内容,以及为什么他们失败了。
How do you set the tab size in a JEditorPane?
JTextPane
不是简单的文件。
Eclipse引发了一些错误:
Type mismatch: cannot convert from javax.swing.text.AttributeSet to
javax.print.attribute.AttributeSet
和
The method setParagraphAttributes(javax.swing.text.AttributeSet, boolean) in the type JTextPane is not applicable for the
arguments (javax.print.attribute.AttributeSet, boolean)
http://www.java2s.com/Code/Java/Swing-JFC/TextPaneSample.htm
此页面讨论了与JTextPane
的样式。我从中改编的代码并做了这个:
MutableAttributeSet set = new SimpleAttributeSet(pane.getParagraphAttributes());
StyleConstants.setLeftIndent(set, 40);
StyleConstants.setRightIndent(set, 40);
答案 0 :(得分:2)
我想在JTextPane中将制表符字符的大小设置为4个空格。
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.text.*;
import javax.swing.event.*;
public class TextPaneTabs
{
public static void setTabs( final JTextPane textPane, int charactersPerTab)
{
FontMetrics fm = textPane.getFontMetrics( textPane.getFont() );
// int charWidth = fm.charWidth( 'w' );
int charWidth = fm.charWidth( ' ' );
int tabWidth = charWidth * charactersPerTab;
// int tabWidth = 100;
TabStop[] tabs = new TabStop[5];
for (int j = 0; j < tabs.length; j++)
{
int tab = j + 1;
tabs[j] = new TabStop( tab * tabWidth );
}
TabSet tabSet = new TabSet(tabs);
SimpleAttributeSet attributes = new SimpleAttributeSet();
StyleConstants.setTabSet(attributes, tabSet);
int length = textPane.getDocument().getLength();
textPane.getStyledDocument().setParagraphAttributes(0, length, attributes, false);
}
private static void createAndShowUI()
{
JTextPane textPane = new JTextPane();
textPane.setText("12345678\n\t1\t2\t3aaaaa\t4\t5\t6\t7\t8\n\t1\t2\t3\t4\t5\t6\t7\t8\n\t\t12345678");
JScrollPane scrollPane = new JScrollPane( textPane );
scrollPane.setPreferredSize( new Dimension(700, 100 ) );
// Change the tab size to 4 characters
setTabs( textPane, 4 );
JFrame frame = new JFrame("SSCCE");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.add( scrollPane );
frame.setLocationByPlatform( true );
frame.pack();
frame.setVisible( true );
}
public static void main(String[] args)
{
EventQueue.invokeLater(new Runnable()
{
public void run()
{
createAndShowUI();
}
});
}
}
当然,当使用JTextPane的默认字体时,空格的宽度不是很宽,所以实际的标签不会那么大。
答案 1 :(得分:1)
从链接http://java-sl.com/tip_default_tabstop_size.html
import javax.swing.text.*;
import javax.swing.*;
public class TabSizeEditorKit extends StyledEditorKit {
public static final int TAB_SIZE=36;
public ViewFactory getViewFactory() {
return new MyViewFactory();
}
static class MyViewFactory implements ViewFactory {
public View create(Element elem) {
String kind = elem.getName();
if (kind != null) {
if (kind.equals(AbstractDocument.ContentElementName)) {
return new LabelView(elem);
} else if (kind.equals(AbstractDocument.ParagraphElementName)) {
return new CustomTabParagraphView(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);
}
}
return new LabelView(elem);
}
}
public static void main(String[] args) {
JFrame frame=new JFrame("Custom default Tab Size in EditorKit example");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JEditorPane edit=new JEditorPane();
edit.setEditorKit(new TabSizeEditorKit());
try {
edit.getDocument().insertString(0,"1\t2\t3\t4\t5", new SimpleAttributeSet());
} catch (BadLocationException e) {
e.printStackTrace();
}
frame.getContentPane().add(new JScrollPane(edit));
frame.setSize(300,100);
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
static class CustomTabParagraphView extends ParagraphView {
public CustomTabParagraphView(Element elem) {
super(elem);
}
public float nextTabStop(float x, int tabOffset) {
TabSet tabs = getTabSet();
if(tabs == null) {
// a tab every 72 pixels.
return (float)(getTabBase() + (((int)x / TAB_SIZE + 1) * TAB_SIZE));
}
return super.nextTabStop(x, tabOffset);
}
}
}