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

时间:2016-10-21 18:05:57

标签: java swing command-line cmd

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

  1. 不可编辑(用户无法删除或完全编辑)
  2. 当用户在Jtextfield中输入一些文本时,它会将该文本附加到它(我已经做了一个将Jtextfield中的文本附加到Jtextpane的方法)
  3. 更清楚的是它与Windows中的cmd相同,它打印“C:\ Users \ username>”作为默认字符串,并在“>”之后从用户处获取命令登录。

    Example

1 个答案:

答案 0 :(得分:1)

以下内容是为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以获取更复杂的解决方案,以便您保护多个位置的文字。