Total members 11890 |It is currently Thu Apr 18, 2024 9:38 am Login / Join Codemiles

Java

C/C++

PHP

C#

HTML

CSS

ASP

Javascript

JQuery

AJAX

XSD

Python

Matlab

R Scripts

Weka





JTextPane gives you more ability to your text area ,this is example show you how to print text with different colors and same also different fonts .
java code
 

import java.awt.Color;
import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.Date;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JScrollPane;
import javax.swing.JTextPane;
import javax.swing.text.BadLocationException;
import javax.swing.text.DefaultStyledDocument;
import javax.swing.text.StyleConstants;
import javax.swing.text.StyleContext;
import javax.swing.text.StyledDocument;

public class FrameTextArea extends JFrame {

    private StyleContext context = new StyleContext();
    private StyledDocument document = new DefaultStyledDocument(context);
    private javax.swing.text.Style style = context.getStyle(StyleContext.DEFAULT_STYLE);
    private final JTextPane textArea = new JTextPane(document);
    private final JScrollPane TextAreaScroll = new JScrollPane(textArea, 

JScrollPane.VERTICAL_SCROLLBAR_ALWAYS, JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
    private JButton jButton = new JButton("Clear");

    public FrameTextArea() {

        setSize(400, 200);
        setTitle("Text Pane");
        StyleConstants.setAlignment(style, StyleConstants.ALIGN_LEFT);
        StyleConstants.setFontSize(style, 10);
        StyleConstants.setSpaceAbove(style, 1);
        StyleConstants.setSpaceBelow(style, 1);
        setLayout(new FlowLayout());
        jButton.addActionListener(new ActionListener() {

            public void actionPerformed(ActionEvent e) {
                try {
                    document.remove(0, document.getLength());
                } catch (BadLocationException ex) {
                    Logger.getLogger(FrameTextArea.class.getName()).log(Level.SEVERE, null, ex);
                }
            }
        });


        add(jButton);
        add(TextAreaScroll);
        StyleConstants.setForeground(style, Color.red);
        try {
            StyleConstants.setForeground(style, Color.red);
            document.insertString(document.getLength(), "\n" + new Date() + ": " + "Red Text", style);
            StyleConstants.setForeground(style, Color.PINK);
            document.insertString(document.getLength(), "\n" + new Date() + ": " + "PINK Text", style);

            StyleConstants.setForeground(style, Color.black);
            document.insertString(document.getLength(), "\n" + "<a href=\"codemiles.com\" >L</a>", style);
        } catch (BadLocationException ex) {
            Logger.getLogger(FrameTextArea.class.getName()).log(Level.SEVERE, null, ex);
        }


        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        setVisible(true);
    }

    public static void main(String[] args) {
       FrameTextArea frameTextArea= new FrameTextArea();
    }
}
 




_________________
M. S. Rakha, Ph.D.
Queen's University
Canada


Author:
Mastermind
User avatar Posts: 2715
Have thanks: 74 time
Post new topic Reply to topic  [ 1 post ] 




Topic Tags

Java Swing






Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
All copyrights reserved to codemiles.com 2007-2011
mileX v1.0 designed by codemiles team
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com