**********************************************************************
COMPLETE SOURCE CODE FOR : SetJTextAreaBackgroundColorToJFrameColor.java
**********************************************************************
import javax.swing.*;
import java.awt.Color;
public class SetJTextAreaBackgroundColorToJFrameColor
{
public static void main(String[]args)
{
//Create a window using JFrame with title ( Set JTextArea background color to JFrame color )
JFrame frame=new JFrame("Set JTextArea background color to JFrame color");
//Get JFrame background color
Color jframeColor=frame.getBackground();
//Create a text area with initial text ( Put your text here )
JTextArea textArea=new JTextArea("Put your text here");
//Set text area background color same to JFrame background color
textArea.setBackground(jframeColor);
//Add created text area into JFrame
frame.add(textArea);
//Set default close operation for JFrame
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
//Set JFrame size
frame.setSize(600,500);
//Make JFrame locate at center on screen
frame.setLocationRelativeTo(null);
//Make JFrame visible
frame.setVisible(true);
}
}
**********************************************************************
JUST COMPILE AND EXECUTE IT
**********************************************************************