Java jlabel change text

How to Use Labels

With the JLabel class, you can display unselectable text and images. If you need to create a component that displays a string, an image, or both, you can do so by using or extending JLabel . If the component is interactive and has a certain state, use a button instead of a label.

By specifying HTML code in a label’s text, you can give the label various characteristics such as multiple lines, multiple fonts or multiple colors. If the label uses just a single color or font, you can avoid the overhead of HTML processing by using the setForeground or setFont method instead. See Using HTML in Swing Components for details.

Note that labels are not opaque by default. If you need to paint the label’s background, it is recommended that you turn its opacity property to «true». The following code snippet shows how to do this.

The following picture introduces an application that displays three labels. The window is divided into three rows of equal height; the label in each row is as wide as possible.

A snapshot of LabelDemo, which uses labels with text and icons.

Try this:

  1. Click the Launch button to run the Label Demo using Java™ Web Start (download JDK 7 or later). Alternatively, to compile and run the example yourself, consult the example index.
  2. Resize the window so you can see how the labels’ contents are placed within the labels’ drawing area.
    All the label contents have default vertical alignment — that is, the label contents are centered vertically in the label’s drawing area. The top label, which contains both an image and text, has horizontal center alignment. The second label, which contains just text, has left (leading) alignment, which is the default for text-only labels in left-to-right languages. The third label, which contains just an image, has horizontal center alignment, which is the default for image-only labels.

Below is the code from LabelDemo.java that creates the labels in the previous example.

ImageIcon icon = createImageIcon("images/middle.gif"); . . . label1 = new JLabel("Image and Text", icon, JLabel.CENTER); //Set the position of the text, relative to the icon: label1.setVerticalTextPosition(JLabel.BOTTOM); label1.setHorizontalTextPosition(JLabel.CENTER); label2 = new JLabel("Text-Only Label"); label3 = new JLabel(icon);

The code for the createImageIcon method is similar to that used throughout this tutorial. You can find it in How to Use Icons.

Often, a label describes another component. When this occurs, you can improve your program’s accessibility by using the setLabelFor method to identify the component that the label describes. For example:

amountLabel.setLabelFor(amountField);

The preceding code, taken from the FormattedTextFieldDemo example discussed in How to Use Formatted Text Fields, lets assistive technologies know that the label ( amountLabel ) provides information about the formatted text field ( amountField ). For more information about assistive technologies, see How to Support Assistive Technologies.

Читайте также:  Питон убрать элемент массива

The Label API

The following tables list the commonly used JLabel constructors and methods. Other methods you are likely to call are defined by the Component and JComponent classes. They include setFont , setForeground , setBorder , setOpaque , and setBackground . See The JComponent Class for details. The API for using labels falls into three categories:

In the following API, do not confuse label alignment with X and Y alignment. X and Y alignment are used by layout managers and can affect the way any component — not just a label — is sized or positioned. Label alignment, on the other hand, has no effect on a label’s size or position. Label alignment simply determines where, inside the label’s painting area, the label’s contents are positioned. Typically, the label’s painting area is exactly the size needed to paint on the label and thus label alignment is irrelevant. For more information about X and Y alignment, see How to Use BoxLayout.

Setting or Getting the Label’s Contents
Method or Constructor Purpose
JLabel(Icon)
JLabel(Icon, int)
JLabel(String)
JLabel(String, Icon, int)
JLabel(String, int)
JLabel()
Creates a JLabel instance, initializing it to have the specified text/image/alignment. The int argument specifies the horizontal alignment of the label’s contents within its drawing area. The horizontal alignment must be one of the following constants defined in the SwingConstants interface (which JLabel implements): LEFT , CENTER , RIGHT , LEADING , or TRAILING . For ease of localization, we strongly recommend using LEADING and TRAILING , rather than LEFT and RIGHT .
void setText(String)
String getText()
Sets or gets the text displayed by the label. You can use HTML tags to format the text, as described in Using HTML in Swing Components.
void setIcon(Icon)
Icon getIcon()
Sets or gets the image displayed by the label.
void setDisplayedMnemonic(char)
char getDisplayedMnemonic()
Sets or gets the letter that should look like a keyboard alternative. This is helpful when a label describes a component (such as a text field) that has a keyboard alternative but cannot display it. If the labelFor property is also set (using setLabelFor ), then when the user activates the mnemonic, the keyboard focus is transferred to the component specified by the labelFor property.
void setDisplayedMnemonicIndex(int)
int getDisplayedMnemonicIndex()
Sets or gets a hint as to which character in the text should be decorated to represent the mnemonic. This is useful when you have two instances of the same character and wish to decorate the second instance. For example, setDisplayedMnemonicIndex(5) decorates the character that is at position 5 (that is, the 6th character in the text). Not all types of look and feel may support this feature.
void setDisabledIcon(Icon)
Icon getDisabledIcon()
Sets or gets the image displayed by the label when it is disabled. If you do not specify a disabled image, then the look and feel creates one by manipulating the default image.
Fine Tuning the Label’s Appearance
Method Purpose
void setHorizontalAlignment(int)
void setVerticalAlignment(int)
int getHorizontalAlignment()
int getVerticalAlignment()
Sets or gets the area on the label where its contents should be placed. The SwingConstants interface defines five possible values for horizontal alignment: LEFT , CENTER (the default for image-only labels), RIGHT , LEADING (the default for text-only labels), TRAILING . For vertical alignment: TOP , CENTER (the default), and BOTTOM .
void setHorizontalTextPosition(int)
void setVerticalTextPosition(int)
int getHorizontalTextPosition()
int getVerticalTextPosition()
Sets or gets the location where the label’s text will be placed, relative to the label’s image. The SwingConstants interface defines five possible values for horizontal position: LEADING , LEFT , CENTER , RIGHT , and TRAILING (the default). For vertical position: TOP , CENTER (the default), and BOTTOM .
void setIconTextGap(int)
int getIconTextGap()
Sets or gets the number of pixels between the label’s text and its image.
Читайте также:  Teachmeskills python разработчик 2021
Supporting Accessibility
Method Purpose
void setLabelFor(Component)
Component getLabelFor()
Sets or gets which component the label describes.

Examples That Use Labels

The following table lists some of the many examples that use labels.

Example Where Described Notes
LabelDemo This section Shows how to specify horizontal and vertical alignment as well as how to align a label’s text and image.
HtmlDemo Using HTML in Swing Components Lets you experiment with specifying HTML text for a label.
BoxAlignmentDemo Fixing Alignment Problems Demonstrates possible alignment problems when using a label in a vertical box layout. Shows how to solve the problem.
DialogDemo How to Use Dialogs Uses a changeable label to display instructions and provide feedback.
SplitPaneDemo How to Use Split Panes and How to Use Lists Displays an image using a label inside of a scroll pane.
SliderDemo2 How to Use Sliders Uses JLabel to provide labels for a slider.
TableDialogEditDemo How to Use Tables Implements a label subclass, ColorRenderer , to display colors in table cells.
FormattedTextFieldDemo How to Use Formatted Text Fields Has four rows, each containing a label and the formatted text field it describes.
TextComponentDemo Text Component Features TextComponentDemo has an inner class ( CaretListenerLabel ) that extends JLabel to provide a label that listens for events, updating itself based on the events.
ColorChooserDemo How to Use Color Choosers Uses an opaque label to display the currently chosen color against a fixed-color background.

See the Using JavaFX UI Controls: Label tutorial to learn about JavaFX labeled controls.

Источник

Change the JLabel Text in Java Swing

Change the JLabel Text in Java Swing

This tutorial demonstrates how to change the JLabel text in Java swing.

Change the JLabel Text in Java Swing

The method setText() can be used to update the text of JLabel in Swing. In Java, we create a frame where the label will be changed if we press the button.

First of all, create a JFrame and set the size.
Now, create the first label with the original text label.
Create a button to change the label.
Add an action listener to the button.
Add the setText method to the action listener and change the text for JLabel .
Finally, run the program, and the JLabel text will be changed when the button is clicked.

Let’s implement the program in Java based on the steps above:

package delftstack;  import java.awt.BorderLayout; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.*;  public class Change_Jlabel   public static void main(String args[])   JFrame Demo_Frame = new JFrame("Demo Frame");  Demo_Frame.setLayout(new BorderLayout());  Demo_Frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);  Demo_Frame.setSize(250,100);   final JLabel J_Label = new JLabel("Original Label");  JButton J_Button = new JButton("Change Label");  J_Button.addActionListener(new ActionListener()   @Override  public void actionPerformed(ActionEvent arg0)   J_Label.setText("New Label");  >  >);   Demo_Frame.add(J_Label, BorderLayout.NORTH);  Demo_Frame.add(J_Button, BorderLayout.CENTER);  Demo_Frame.setVisible(true);  > > 

See the output for the code above:

Sheeraz is a Doctorate fellow in Computer Science at Northwestern Polytechnical University, Xian, China. He has 7 years of Software Development experience in AI, Web, Database, and Desktop technologies. He writes tutorials in Java, PHP, Python, GoLang, R, etc., to help beginners learn the field of Computer Science.

Related Article — Java Swing

Related Article — Java JLabel

Copyright © 2023. All right reserved

Источник

Class JLabel

A display area for a short text string or an image, or both. A label does not react to input events. As a result, it cannot get the keyboard focus. A label can, however, display a keyboard alternative as a convenience for a nearby component that has a keyboard alternative but can’t display it.

A JLabel object can display either text, an image, or both. You can specify where in the label’s display area the label’s contents are aligned by setting the vertical and horizontal alignment. By default, labels are vertically centered in their display area. Text-only labels are leading edge aligned, by default; image-only labels are horizontally centered, by default.

You can also specify the position of the text relative to the image. By default, text is on the trailing edge of the image, with the text and image vertically aligned.

A label’s leading and trailing edge are determined from the value of its ComponentOrientation property. At present, the default ComponentOrientation setting maps the leading edge to left and the trailing edge to right.

Finally, you can use the setIconTextGap method to specify how many pixels should appear between the text and the image. The default is 4 pixels.

See How to Use Labels in The Java Tutorial for further documentation.

Warning: Swing is not thread safe. For more information see Swing’s Threading Policy.

Warning: Serialized objects of this class will not be compatible with future Swing releases. The current serialization support is appropriate for short term storage or RMI between applications running the same version of Swing. As of 1.4, support for long term storage of all JavaBeans has been added to the java.beans package. Please see XMLEncoder .

Источник

Оцените статью