
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Create LineBorder Using BorderFactory Class in Java
To create line border, use the createLineBorder() method. Let us first create a label component −
JLabel label; label = new JLabel("Demo label");
Now, create line border with BorderFactory class. Here, we have also set the color for the line border −
label.setBorder(BorderFactory.createLineBorder(Color.yellow));
The following is an example to create a LineBorder with BorderFactory class −
package my; import javax.swing.BorderFactory; import java.awt.Color; import java.awt.Font; import javax.swing.JFrame; import javax.swing.JLabel; public class SwingDemo { public static void main(String[] args) throws Exception { JFrame frame = new JFrame("Demo"); JLabel label; label = new JLabel("Demo label"); label.setFont(new Font("Arial", Font.BOLD, 18)); label.setVerticalAlignment(JLabel.CENTER); label.setBorder(BorderFactory.createLineBorder(Color.yellow)); frame.add(label); frame.setSize(550,350); frame.setVisible(true); } }
Output
Advertisements