gpt4 book ai didi

Java - JTextPane 中的自动缩进

转载 作者:搜寻专家 更新时间:2023-11-01 02:48:50 26 4
gpt4 key购买 nike

我正在用 Java 开发一个文本编辑器,除了自动缩进,我拥有我需要的一切。如果他们换行,我将如何使缩进保持不变。我正在为我的编辑器窗口使用 JTextPane。

基本上,如果用户输入新行,我希望新行与前一行一样缩进。

到目前为止,这是我的缩进代码:

注意:我的JTextPane是txt,doc部分是JTextPane的DefaultStyledDocument();

SimpleAttributeSet attributes = new SimpleAttributeSet();

TabStop[] tabStops = new TabStop[3];
tabStops[0] = new TabStop(25, TabStop.ALIGN_LEFT, TabStop.LEAD_DOTS);
tabStops[1] = new TabStop(25, TabStop.ALIGN_LEFT, TabStop.LEAD_DOTS);
tabStops[2] = new TabStop(25, TabStop.ALIGN_LEFT, TabStop.LEAD_DOTS);
tabStops[2] = new TabStop(25, TabStop.ALIGN_LEFT, TabStop.LEAD_DOTS);


TabSet tabSet = new TabSet(tabStops);
StyleConstants.setTabSet(attributes, tabSet);
doc.setParagraphAttributes(0, 0, attributes, false);

最佳答案

使用文档过滤器:

import java.awt.*;
import javax.swing.*;
import javax.swing.text.*;

public class NewLineFilter extends DocumentFilter
{
public void insertString(FilterBypass fb, int offs, String str, AttributeSet a)
throws BadLocationException
{
if ("\n".equals(str))
str = addWhiteSpace(fb.getDocument(), offs);

super.insertString(fb, offs, str, a);
}

public void replace(FilterBypass fb, int offs, int length, String str, AttributeSet a)
throws BadLocationException
{
if ("\n".equals(str))
str = addWhiteSpace(fb.getDocument(), offs);

super.replace(fb, offs, length, str, a);
}

private String addWhiteSpace(Document doc, int offset)
throws BadLocationException
{
StringBuilder whiteSpace = new StringBuilder("\n");
Element rootElement = doc.getDefaultRootElement();
int line = rootElement.getElementIndex( offset );
int i = rootElement.getElement(line).getStartOffset();

while (true)
{
String temp = doc.getText(i, 1);

if (temp.equals(" ") || temp.equals("\t"))
{
whiteSpace.append(temp);
i++;
}
else
break;
}

return whiteSpace.toString();
}

private static void createAndShowUI()
{
JTextArea textArea = new JTextArea(5, 50);
AbstractDocument doc = (AbstractDocument)textArea.getDocument();
doc.setDocumentFilter( new NewLineFilter() );

JFrame frame = new JFrame("NewLineFilter");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.add( new JScrollPane(textArea) );
frame.pack();
frame.setLocationByPlatform( true );
frame.setVisible( true );
}

public static void main(String[] args)
{
EventQueue.invokeLater(new Runnable()
{
public void run()
{
createAndShowUI();
}
});
}
}

阅读 Implementing a Document Filter 上的 Swing 教程部分获取更多信息。

关于Java - JTextPane 中的自动缩进,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15867900/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com