vote up 1 vote down star

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?

flag

3 Answers

vote up 2 vote down

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

link|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.