limitar textbox

Iniciado por Roboto, 22 Noviembre 2011, 12:42 PM

0 Miembros y 1 Visitante están viendo este tema.

Roboto

Veran,uso netbeans,pork me parece mejor k eclipse,pero eso da iwal.
tengo los 2 programas.

mi problema esk usando formularios o sin usarlos,da iwal.
no encuentro la opcion de limitar un JTextField a un nº det. de caracteres.

lo unico k se me ocurrio fue,hacer un evento keyPress,que contara el nº de letras,y cuando llegaras al tope,no te deje meter mas.

el prblema esk cuando tratas de meter,se ve la letra y luego se borra (keda muy warro), saben alguna forma de como hacerlo?

adastra

Necesitas usar un objeto JTextFieldLimit
por ejemplo:

tx = new JTextField(15);
tx.setDocument(new JTextFieldLimit(10));

adastra

Perdón le di enviar antes de terminar...

el objeto anterior debes crearlo tu mismo, y el metodo setDocument establece esos limites, por ejemplo:

import java.awt.FlowLayout;

import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JTextField;
import javax.swing.text.AttributeSet;
import javax.swing.text.BadLocationException;
import javax.swing.text.PlainDocument;

class JTextFieldLimit extends PlainDocument {
  private int limit;
  JTextFieldLimit(int limit) {
    super();
    this.limit = limit;
  }

  JTextFieldLimit(int limit, boolean upper) {
    super();
    this.limit = limit;
  }

  public void insertString(int offset, String str, AttributeSet attr) throws BadLocationException {
    if (str == null)
      return;

    if ((getLength() + str.length()) <= limit) {
      super.insertString(offset, str, attr);
    }
  }
}

public class Main extends JFrame {
  JTextField textfield1;

  JLabel label1;

  public void init() {
    setLayout(new FlowLayout());
    label1 = new JLabel("max 10 chars");
    textfield1 = new JTextField(15);
    add(label1);
    add(textfield1);
    textfield1.setDocument(new JTextFieldLimit(10));
   
    setSize(300,300);
    setVisible(true);
  }

Roboto