gpt4 book ai didi

java - 限制对 JTextArea 中某些行的访问?

转载 作者:行者123 更新时间:2023-12-01 11:27:50 24 4
gpt4 key购买 nike

我想制作一个 JTextArea,用户无法删除前一行。就像 Windows 中的命令提示符和 Linux 中的终端一样,您无法编辑之前的行。

这是我想出来的,但似乎行不通,而且我只能想出一个原因,但似乎不止一个原因。

if(commandArea.getCaretPosition() < commandArea.getText().lastIndexOf("\n")){
commandArea.setCaretPosition(commandArea.getText().lastIndexOf("\n"));
}

此代码块位于此方法内:

private void commandAreaKeyPressed(java.awt.event.KeyEvent evt)

最佳答案

您可以对 JTextArea 的文档使用 DocumentFilter。可运行的工作示例,仅允许在 JTextArea 中编辑最后一行:

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

public class MainClass {

public static void main(String[] args) {
JFrame frame = new JFrame("text area test");
JPanel panelContent = new JPanel(new BorderLayout());
frame.setContentPane(panelContent);
UIManager.getDefaults().put("TextArea.font", UIManager.getFont("TextField.font")); //let text area respect DPI
panelContent.add(createSpecialTextArea(), BorderLayout.CENTER);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(800, 600);
frame.setLocationRelativeTo(null); //center screen
frame.setVisible(true);
}

private static JTextArea createSpecialTextArea() {
final JTextArea textArea = new JTextArea("first line\nsecond line\nthird line");
((AbstractDocument)textArea.getDocument()).setDocumentFilter(new DocumentFilter() {

private boolean allowChange(int offset) {
try {
int offsetLastLine = textArea.getLineCount() == 0 ? 0 : textArea.getLineStartOffset(textArea.getLineCount() - 1);
return offset >= offsetLastLine;
} catch (BadLocationException ex) {
throw new RuntimeException(ex); //should never happen anyway
}
}

@Override
public void remove(FilterBypass fb, int offset, int length) throws BadLocationException {
if (allowChange(offset)) {
super.remove(fb, offset, length);
}
}

@Override
public void replace(FilterBypass fb, int offset, int length, String text, AttributeSet attrs) throws BadLocationException {
if (allowChange(offset)) {
super.replace(fb, offset, length, text, attrs);
}
}

@Override
public void insertString(FilterBypass fb, int offset, String string, AttributeSet attr) throws BadLocationException {
if (allowChange(offset)) {
super.insertString(fb, offset, string, attr);
}
}



});
return textArea;
}
}

它是如何工作的? JTextArea是一个文本控件,实际数据有Document。 Document 允许监听更改(DocumentListener),并且某些文档允许设置 DocumentFilter 来禁止更改。 PlainDocument 和 DefaultStyledDocument 都继承自 AbstractDocument,它允许设置过滤器。

请务必阅读 java 文档:

我还推荐教程:

关于java - 限制对 JTextArea 中某些行的访问?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30671911/

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