Header Ads Widget

Responsive Advertisement

Ticker

6/recent/ticker-posts

Get default JPanel background color (Java)

Complete source code below will show you, how to get default JPanel background color and after that, it will print RED,GREEN,BLUE(RGB) value for the color.

******************************************************************
COMPLETE SOURCE CODE FOR : GetDefaultJPanelBackgroundColor.java
******************************************************************
import javax.swing.JPanel;

import java.awt.Color;

public class GetDefaultJPanelBackgroundColor
{
public static void main(String[]args)
{
 //Create a panel using JPanel
 JPanel panel=new JPanel();

 //Get panel background color using method getBackground()
 Color panelBackgroundColor=panel.getBackground();

 //Get RED value from color
 int redValue=panelBackgroundColor.getRed();

 //Get GREEN value from color
 int greenValue=panelBackgroundColor.getGreen();

 //Get BLUE value from color
 int blueValue=panelBackgroundColor.getBlue();

 //Print RGB value that we get
 System.out.println("R : "+redValue);
 System.out.println("G : "+greenValue);
 System.out.println("B : "+blueValue);

 //You can check what color that match the RGB value that we get using 'Color picker' at above
}
}


******************************************************************
JUST COMPILE AND EXECUTE IT
******************************************************************