JTextField | What this section covers: basic text fields. |
JFormattedTextField
|
A JTextField subclass
that allows you to specify the legal set of characters
that the user can enter.
See
How to Use Formatted Text Fields.
|
JPasswordField
|
A JTextField subclass
that does not show the characters that the user types.
See
How to Use Password Fields.
|
JComboBox
| Can be edited, and provides a menu of strings to choose from. See How to Use Combo Boxes. |
JSpinner
| Combines a formatted text field with a couple of small buttons that enables the user to choose the previous or next available value. See How to Use Spinners. |
The following example displays a basic text field and a text area. The text field is editable. The text area is not editable. When the user presses Enter in the text field, the program copies the text field's contents to the text area, and then selects all the text in the text field.
Click the Launch button to run TextDemo using Java™ Web Start (download JDK 6). Alternatively, to compile and run the example yourself, consult the example index.
TextDemo.java
.
The following code
creates and sets up the text field:
textField = new JTextField(20);
JTextField
constructor,
20
in the example,
indicates the number of columns in the field.
This number is used along with metrics provided by
the field's current font
to calculate the field's preferred width.
It does not limit the number of characters the user
can enter.
To do that, you can either use a
formatted text field
or a
document listener,
as described in
Text Component Features.
The next line of code
registers a TextDemo
object
as an action listener for the text field.
textField.addActionListener(this);
actionPerformed
method
handles action events from the text field:
private final static String newline = "\n"; ... public void actionPerformed(ActionEvent evt) { String text = textField.getText(); textArea.append(text + newline); textField.selectAll(); }
JTextField
's getText
method to retrieve the text currently contained by the text field.
The text returned by this method
does not include a newline character
for the Enter key that fired the action event.
You have seen how a basic text field can be used.
Because the JTextField
class inherits from
the JTextComponent
class,
text fields are very flexible and can be customized almost
any way you like.
For example, you can add a document listener
or a document filter
to be notified when the text changes, and
in the filter case you can
modify the text field accordingly.
Information on text components can be found in
Text Component Features.
Before customizing a JTextField
,
however,
make sure that one of the other
components based on text fields
will not do the job for you.
Often text fields are paired with labels that describe the text fields. See Examples That Use Text Fields for pointers on creating these pairs.
TextFieldDemo
example
introduces a text field and a text area.
You can find the entire code for this program in
TextFieldDemo.java
.
As you type characters in the text field the program searches for the typed text
in the text area. If the entry is found it gets highlighted.
If the program fails to find the entry then
the text field's background becomes pink.
A status bar below the text area displays a message
whether text is found or not.
The Escape key is used to start a new search or to finish the current one.
Here is a picture of the TextFieldDemo
application.
final Highlighter hilit; final Highlighter.HighlightPainter painter; ... hilit = new DefaultHighlighter(); painter = new DefaultHighlighter.DefaultHighlightPainter(HILIT_COLOR); textArea.setHighlighter(hilit);
entry.getDocument().addDocumentListener(this);
insertUpdate
and removeUpdate
methods call the search
method,
which not only performs a search in the text area
but also handles highlighting.
The following code highlights the found text,
sets the caret to the end of the found match,
sets the default background for the text field,
and displays a message in the status bar.
hilit.addHighlight(index, end, painter); textArea.setCaretPosition(end); entry.setBackground(entryBg); message("'" + s + "' found. Press ESC to end search");
JLabel
object.
The code below shows how the message
method is implemented.
private JLabel status; ... void message(String msg) { status.setText(msg); }
entry.setBackground(ERROR_COLOR); message("'" + s + "' not found. Press ESC to start a new search");
CancelAction
class is responsible
for handling the Escape key as follows.
class CancelAction extends AbstractAction { public void actionPerformed(ActionEvent ev) { hilit.removeAllHighlights(); entry.setText(""); entry.setBackground(entryBg); } }
JTextField
constructors and methods.
Other methods you are likely to call
are defined in the JTextComponent
class.
Refer to
The Text Component API.
You might also invoke methods on a
text field
inherited from the text field's other ancestors,
such as setPreferredSize
,
setForeground
,
setBackground
,
setFont
, and so on.
See
The JComponent Class
for tables of commonly used inherited methods.
The API for using text fields falls into these categories:
Method or Constructor | Purpose |
---|---|
JTextField() JTextField(String) JTextField(String, int) JTextField(int) |
Creates a text field.
When present, the int argument specifies the desired width
in columns.
The String argument contains the field's initial text.
|
void setText(String) String getText() (defined in JTextComponent )
|
Sets or obtains the text displayed by the text field. |
Method | Purpose |
---|---|
void setEditable(boolean) boolean isEditable() (defined in JTextComponent )
|
Sets or indicates whether the user can edit the text in the text field. |
void setColumns(int); int getColumns() |
Sets or obtains the number of columns displayed by the text field. This is really just a hint for computing the field's preferred width. |
void setHorizontalAlignment(int); int getHorizontalAlignment() |
Sets or obtains how the text is aligned horizontally within its area.
You can use JTextField.LEADING ,
JTextField.CENTER ,
and JTextField.TRAILING for arguments.
|
Method | Purpose |
---|---|
void addActionListener(ActionListener) void removeActionListener(ActionListener) |
Adds or removes an action listener. |
void selectAll() (defined in JTextComponent )
|
Selects all characters in the text field. |
Example | Where Described | Notes |
---|---|---|
TextDemo | This section | An application that uses a basic text field with an action listener. |
TextFieldDemo | This section | An application that uses a text field and a text area. A search is made in the text area to find an entry from the text field. |
DialogDemo | How to Make Dialogs | CustomDialog.java includes a text field
whose value is checked.
You can bring up the dialog by clicking the More Dialogs tab,
selecting the Input-validating dialog option,
and then clicking the Show it! button.
|
TextSamplerDemo | Using Text Components | Lays out label-text field pairs using a GridBagLayout
and a convenience method:
addLabelTextRows(JLabel[] labels, JTextField[] textFields, GridBagLayout gridbag, Container container) |
TextInputDemo | How to Use Formatted Text Fields | Lays out label-text field pairs using a SpringLayout
and a SpringUtilities convenience method:
makeCompactGrid(Container parent, int rows, int cols, int initialX, int initialY, int xPad, int yPad) |