up vote 1 down vote favorite
share [g+] share [fb]

Hi I have an app that is written in Swing, awt. I want to prevent users from pasting values into the textfields. is there any way to do this without using action listeners?

link|improve this question
feedback

5 Answers

The best way is to remove action associated with CTRL+V keystroke in components ActionMap.

link|improve this answer
feedback

you may be able to override the paste method in jtextcomponent.

link|improve this answer
feedback

Or you can:

  • defined your own PlainDocument, then
  • associate it to your JTextFiled, and
  • override in your PlainDocument the insertString() method

The insertString Method will only insert anything if the custom attribute 'enablePaste' that you will have defined in this custom PlainDocument class is true.

link|improve this answer
feedback

You can just call setTransferHandler with a null parameter like this:

textComponent.setTransferHandler(null);

This will disable all copy/paste actions on the field.

link|improve this answer
feedback

The simplest way it to say: textComponent.setEditable(false);

This disables cut & paste, but copy is still enabled.

link|improve this answer
True story, I have a text component where isEditable() returns false, but TransferAction still lets you paste into it. Pressing Ctrl-V is disabled, but if you have a Paste action in the main menu which is hooked up to the relevant component's transfer action, people will still be able to paste. – Trejkaz Sep 9 '11 at 4:14
feedback

Your Answer

 
or
required, but never shown