Java Program for JScrollPane : Swing Components

Program:

import java.awt.FlowLayout;  
import javax.swing.*;  
  
public class JScrollPaneExample 
{  
    private static final long serialVersionUID = 1L;  
  
    private static void createAndShowGUI() 
    {  
  
        final JFrame frame = new JFrame("Scroll Pane Example");  
        frame.setSize(350, 290);  
        frame.setVisible(true);  
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);  
        frame.getContentPane().setLayout(new FlowLayout());  
  
        JTextArea textArea = new JTextArea(6, 25);  
        JScrollPane scrollableTextArea = new JScrollPane(textArea);  
  
                                                                      scrollableTextArea.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);  
        scrollableTextArea.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);  
  
        frame.getContentPane().add(scrollableTextArea);  
    }  
    public static void main(String[] args) 
    {  
  javax.swing.SwingUtilities.invokeLater(new Runnable() 
                {  
        public void run() 
                     {  
                    createAndShowGUI();  
                     }  
                 });  
     }  
}  


Output:




Comments