gpt4 book ai didi

java - 如何将默认字符串放入Jtextpane并使其在java中不可编辑

转载 作者:行者123 更新时间:2023-12-01 09:20:41 24 4
gpt4 key购买 nike

首先,我有一个 Jtextpane,它从另一个 Jtextfield 获取文本。我希望 Jtextpane 有一个默认字符串,即每当我运行程序时,它都会在开头显示一些属性:

  1. 不可编辑(用户根本无法删除或编辑它)
  2. 当用户在 Jtextfield 中输入一些文本时,它会将该文本附加到其中(我已经实现了一种将 Jtextfield 中的文本附加到 Jtextpane 的方法)

更清楚地说,它与 Windows 中的 cmd 相同,它打印“C:\Users\username>”作为默认字符串,并在“>”符号后接受用户的命令。

Example

最佳答案

以下内容是为 JTextField 设计的,但它也应该适用于 JTextPane。它使用 NavigationFilter 来控制 Caret 的位置。

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

public class NavigationFilterPrefixWithBackspace extends NavigationFilter
{
private int prefixLength;
private Action deletePrevious;

public NavigationFilterPrefixWithBackspace(int prefixLength, JTextComponent component)
{
this.prefixLength = prefixLength;
deletePrevious = component.getActionMap().get("delete-previous");
component.getActionMap().put("delete-previous", new BackspaceAction());
component.setCaretPosition(prefixLength);
}

@Override
public void setDot(NavigationFilter.FilterBypass fb, int dot, Position.Bias bias)
{
fb.setDot(Math.max(dot, prefixLength), bias);
}

@Override
public void moveDot(NavigationFilter.FilterBypass fb, int dot, Position.Bias bias)
{
fb.moveDot(Math.max(dot, prefixLength), bias);
}

class BackspaceAction extends AbstractAction
{
@Override
public void actionPerformed(ActionEvent e)
{
JTextComponent component = (JTextComponent)e.getSource();

if (component.getCaretPosition() > prefixLength)
{
deletePrevious.actionPerformed( null );
}
}
}

private static void createAndShowUI()
{
JTextField textField = new JTextField("Prefix_", 20);
textField.setNavigationFilter( new NavigationFilterPrefixWithBackspace(7, textField) );

JFrame frame = new JFrame("Navigation Filter Example");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().add(textField);
frame.pack();
frame.setLocationRelativeTo( null );
frame.setVisible(true);
}

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

如果不起作用,请查看 Protected Text Component获取更复杂的解决方案,允许您保护多个位置的文本。

关于java - 如何将默认字符串放入Jtextpane并使其在java中不可编辑,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40182913/

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