Home  >  Article  >  Java  >  How to Validate Non-Positive Integer Input in JTable Cells?

How to Validate Non-Positive Integer Input in JTable Cells?

Mary-Kate Olsen
Mary-Kate OlsenOriginal
2024-10-27 07:08:29904browse

How to Validate Non-Positive Integer Input in JTable Cells?

Invalid Input Validation in JTable Cells

Question:

Consider a JTable where a column's class type is specified as Integer using the getColumnClass() method. Swing automatically marks and rejects invalid inputs (e.g., double values). However, a custom validation for non-positive integer input (negative or zero) is desired, mimicking the default behavior for invalid integer inputs.

Answer:

Unlike Swing's default checks, which use introspection to detect exceptions, a custom editor can be employed for specific validation. For instance, PositiveIntegerCellEditor can be created as a subclass of DefaultCellEditor to accomplish the task.

In stopCellEditing() method, an attempt to convert the input to an Integer is made. If the value is non-positive, a NumberFormatException is thrown, causing the textField to be outlined in red, indicating an invalid input.

<code class="java">private static class PositiveIntegerCellEditor extends DefaultCellEditor {

    private static final Border red = new LineBorder(Color.red);
    private static final Border black = new LineBorder(Color.black);
    private JTextField textField;

    public PositiveIntegerCellEditor(JTextField textField) {
        super(textField);
        this.textField = textField;
        this.textField.setHorizontalAlignment(JTextField.RIGHT);
    }

    @Override
    public boolean stopCellEditing() {
        try {
            int v = Integer.valueOf(textField.getText());
            if (v < 0) {
                throw new NumberFormatException();
            }
        } catch (NumberFormatException e) {
            textField.setBorder(red);
            return false;
        }
        return super.stopCellEditing();
    }

    @Override
    public Component getTableCellEditorComponent(JTable table,
        Object value, boolean isSelected, int row, int column) {
        textField.setBorder(black);
        return super.getTableCellEditorComponent(
            table, value, isSelected, row, column);
    }
}</code>

When a cell with an invalid input is clicked, the PositiveIntegerCellEditor will be activated, and upon exiting edit mode (e.g., by pressing Enter or Tab), the stopCellEditing() method will attempt to convert the input. If the conversion fails (i.e., the input is non-positive), the textField border will be set to red, and the focus will remain on the cell.

The above is the detailed content of How to Validate Non-Positive Integer Input in JTable Cells?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn