基本上,我有一个包含模板的下拉菜单。例如:
apple( )
banana( )
选择其中一个后,它会粘贴到JTextArea上。我的问题是如果选择“apple()”,我想要“apple”并且TextArea中的两个括号不可删除,并且用户可以在括号内输入任何内容。
有人能在这里给我任何指导/想法吗?我一直在网上搜索,发现很少。
答案 0 :(得分:2)
查看Proctected Text Component。它允许您将单个文本标记为受保护,以便不能更改或删除。
它使用DocumentFilter
以及NavigationFilter
。
对于更简单的解决方案,您可以只使用NavigationFilter
。下面的示例显示了如何阻止在文档开头选择文本。您应该能够对其进行自定义,以防止在文档末尾选择文本。
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();
}
});
}
}
答案 1 :(得分:-2)
你自己必须这样做。我建议你创建一个事件处理程序,每次文本更改时都会触发(Click here to find out how)。在该处理程序内部检查JTextArea是否仍然以" apple("以"结尾)"开始。