Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

1 Answer
karthikeya Boyini

The following is an example to display the contents of a text file in JTextArea −

Example

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class SwingDemo {
   private JFrame mainFrame;
   private JLabel statusLabel;
   private JPanel controlPanel;
   public SwingDemo() {
      prepareGUI();
   }
   public static void main(String[] args) {
      SwingDemo demo = new SwingDemo();
      demo.showTextAreaDemo();
   }
   private void prepareGUI() {
      mainFrame = new JFrame("Java Swing");
      mainFrame.setSize(400,400);
      mainFrame.setLayout(new GridLayout(3, 1));
      mainFrame.addWindowListener(new WindowAdapter() {
         public void windowClosing(WindowEvent windowEvent) {
            System.exit(0);
         }
      });
      statusLabel = new JLabel("",JLabel.CENTER);
      statusLabel.setSize(350,100);
      controlPanel = new JPanel();
      controlPanel.setLayout(new FlowLayout());
      mainFrame.add(controlPanel);
      mainFrame.add(statusLabel);
      mainFrame.setVisible(true);
   }
   private void showTextAreaDemo() {
      JLabel commentlabel= new JLabel("Text = ", JLabel.RIGHT);
      final JTextArea commentTextArea =
      new JTextArea("This is demo text!",5,20);
      JScrollPane scrollPane = new JScrollPane(commentTextArea);
      JButton showButton = new JButton("Show");
      showButton.addActionListener(new ActionListener() {
         public void actionPerformed(ActionEvent e) {
            statusLabel.setText( commentTextArea.getText());
         }
      });
      controlPanel.add(commentlabel);
      controlPanel.add(scrollPane);
      controlPanel.add(showButton);
      mainFrame.setVisible(true);
   }
}

Output

Click on the “Show” button above to display the text −

Advertisements

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.