Java Program to get text from JTextPane and display in Console


To get text from JTextPane, use the getText() method. At first, create a text pane component −

JTextPane textPane = new JTextPane();

Now, get the text −

textPane.getText());
Display in Console:
System.out.println(textPane.getText());

The following is an example to get JTextPane and display in Console −

Example

package my;
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Container;
import javax.swing.JFrame;
import javax.swing.JScrollPane;
import javax.swing.JTextPane;
import javax.swing.text.BadLocationException;
import javax.swing.text.SimpleAttributeSet;
import javax.swing.text.StyleConstants;
public class SwingDemo {
   public static void main(String args[]) throws BadLocationException {
      JFrame frame = new JFrame("Demo");
      frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
      Container container = frame.getContentPane();
      JTextPane textPane = new JTextPane();
      SimpleAttributeSet attributeSet = new SimpleAttributeSet();
      StyleConstants.setItalic(attributeSet, true);
      StyleConstants.setForeground(attributeSet, Color.blue);
      StyleConstants.setBackground(attributeSet, Color.white);
      textPane.setCharacterAttributes(attributeSet, true);
      textPane.setText("This is our demo text! We are displaying the text in the console.");
      System.out.println(textPane.getText());
      JScrollPane scrollPane = new JScrollPane(textPane);
      container.add(scrollPane, BorderLayout.CENTER);
      frame.setSize(550, 300);
      frame.setVisible(true);
   }
}

Output

The text would be visible on Console −

Updated on: 30-Jul-2019

520 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements