There are two buttons which are enabled only when valid data is present in all fields, that is, numeric values and no negative numbers.. How do you do that?
Enable JButtons in java after JTextFields have been validated for numeric values greater than 0?
2.4k Views Asked by Maddy At
4
There are 4 best solutions below
1

Use a Key listener or use a focuslost in your JTextFields.
http://www.java2s.com/Tutorial/Java/0240__Swing/ListeningtoJTextFieldEventswithanKeyListener.htm
http://docs.oracle.com/javase/tutorial/uiswing/events/focuslistener.html
1

If you just don't want to allow negative value then you can use DocumentFilter.
/**
* REF: http://www.coderanch.com/t/345628/GUI/java/DocumentFilter
*/
public class NumericFilter extends DocumentFilter {
@Override
public void insertString(DocumentFilter.FilterBypass fb, int offset,
String text, AttributeSet attr) throws BadLocationException {
fb.insertString(offset, text.replaceAll("\\D", ""), attr);
}
// no need to override remove(): inherited version allows all removals
@Override
public void replace(DocumentFilter.FilterBypass fb, int offset, int length,
String text, AttributeSet attr) throws BadLocationException {
fb.replace(offset, length, text.replaceAll("\\D", ""), attr);
}
}
Then to use
((AbstractDocument)(new JTextField).getDocument()).setDocumentFilter(new NumericFilter());
I would consider using a DocumentListener that listens to the Documents held by the JTextFields. There are examples of this sort of thing on this site (I know, because I've written one or two).
For example,