- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to set the text of the JLabel to be right-justified and vertically centered in Java?
To set the text of the label component to be right- justified and vertically centered, you need to set the alignment while creating a new label.
Set the label to be on the right -
JLabel label = new JLabel("Name", JLabel.RIGHT);
Here, we have set the size of the label as well as the color that includes foreground and background color -
label.setPreferredSize(new Dimension(170, 70)); label.setOpaque(true); label.setBackground(Color.MAGENTA); label.setForeground(Color.WHITE);
The following is an example to set the text of the label to be right-justified and vertically centered −
Example
package my; import java.awt.Color; import java.awt.Dimension; import java.awt.FlowLayout; import java.awt.Font; import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.JTextArea; import javax.swing.WindowConstants; public class SwingDemo { public static void main(String[] args) { JFrame frame = new JFrame("Frame"); frame.setLayout(new FlowLayout()); JLabel label = new JLabel("Name", JLabel.RIGHT); label.setPreferredSize(new Dimension(170, 70)); label.setOpaque(true); label.setBackground(Color.MAGENTA); label.setForeground(Color.WHITE); Font font = new Font("Serif", Font.BOLD, 18); label.setFont(font); JTextArea text = new JTextArea(); text.setText("AMIT"); font = new Font("Serif", Font.BOLD, 14); text.setFont(font); frame.add(label); frame.add(text); frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE); frame.setSize(500, 300); frame.setVisible(true); } }
Output
- Related Articles
- Java Program to set the content of the JLabel to be right-justified and bottom-aligned
- Set the content of the JLabel to be left-justified and top-aligned in Java
- Java program to set the content of the JLabel to be left-justified and bottom-aligned
- How to align JLabel text vertically top in Java?
- How to set the content of the label to be right-justified and top-aligned in Java?
- Set the content of the label horizontally and vertically centered in Java
- Java Program to set alignment for text in JLabel
- How to arrange components in a Flow to be right-justified in Java?
- How to ceate right justified JTextField in Java?
- Set the alignment of the JLabel content along the X axis on the right in Java
- How to set the alignment of the JLabel content along the X axis in Java?
- How to set the alignment of the JLabel content along the Y axis in Java?
- How to create JLabel to hold multiline of text using HTML in Java?
- How to set location of JLabel in a JFrame with Java?
- How to change text font for JLabel with HTML in Java?

Advertisements