EditorPane Sample : Text EditorPane « Swing JFC « Java






EditorPane Sample

EditorPane Sample
    
/*
Definitive Guide to Swing for Java 2, Second Edition
By John Zukowski     
ISBN: 1-893115-78-X
Publisher: APress
*/

import java.awt.BorderLayout;
import java.awt.Container;

import javax.swing.JEditorPane;
import javax.swing.JFrame;
import javax.swing.JScrollPane;

public class EditorSample {
  public static void main(String args[]) {
    JFrame f = new JFrame("JEditorPane Sample");
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    Container content = f.getContentPane();
    JEditorPane editor = new JEditorPane(
        "text/html",
        "<H3>Help</H3><center><IMG src=file:///c:/cpress/code/Ch01/logo.jpg></center><li>One<li><i>Two</i><li><u>Three</u>");
    editor.setEditable(false);
    JScrollPane scrollPane = new JScrollPane(editor);
    content.add(scrollPane, BorderLayout.CENTER);
    f.setSize(300, 200);
    f.setVisible(true);
  }
}

           
         
    
    
    
  








Related examples in the same category

1.Viewing RTF formatViewing RTF format
2.Setting the Font and Color of Text in a JTextPane Using Styles: Makes text red
3.Setting the Font and Color of Text in a JTextPane Using Styles: Inherits from "Red"; makes text red and underlined
4.Setting the Font and Color of Text in a JTextPane Using Styles: Makes text 24pts
5.Setting the Font and Color of Text in a JTextPane Using Styles: Makes text italicized
6.JEditorPane and the Swing HTML PackageJEditorPane and the Swing HTML Package
7.JEditorPane and the Swing HTML Package 2JEditorPane and the Swing HTML Package 2
8.JEditorPane and the Swing HTML Package 3JEditorPane and the Swing HTML Package 3
9.JEditorPane and the Swing HTML Package 4JEditorPane and the Swing HTML Package 4
10.JEditorPane and the Swing HTML Package 5JEditorPane and the Swing HTML Package 5
11.JEditorPane and the Swing HTML Package 6JEditorPane and the Swing HTML Package 6
12.JEditorPane and the Swing HTML Package 7JEditorPane and the Swing HTML Package 7
13.JEditorPane and the Swing HTML Package 8JEditorPane and the Swing HTML Package 8
14.JEditorPane and the Swing HTML Package 9JEditorPane and the Swing HTML Package 9
15.EditorPane Example 10EditorPane Example 10
16.JEditorPane Example 10 - using getIteratorJEditorPane Example 10 - using getIterator
17.JEditorPane Example 11JEditorPane Example 11
18.JEditorPane Example 12JEditorPane Example 12
19.JEditorPane Example 13JEditorPane Example 13
20.JEditorPane Example 14JEditorPane Example 14
21.JEditorPane Example 15JEditorPane Example 15
22.JEditorPane Example 16JEditorPane Example 16
23.JEditorPane Example 17JEditorPane Example 17
24.JEditorPane Example 18JEditorPane Example 18
25.JEditorPane Example 19JEditorPane Example 19
26.JEditorPane Example 20JEditorPane Example 20
27.JEditorPane and HyperlinkListener Demo
28.Create a right-aligned tab stop at 200 pixels from the left margin
29.Create a center-aligned tab stop at 300 pixels from the left margin
30.Create a decimal-aligned tab stop at 400 pixels from the left margin
31.Use SimpleAttributeSet with JTextPane
32.Show html
33.Show web page
34.Change mouse cursor during mouse-over action on hyperlinks
35.Create a simple browser in Swing
36.Add colored text to the document
37.Returns the offset of the bracket matching the one at the specified offset of the document
38.Return the leading whitespace of that string, for indenting subsequent lines
39.Locates the end of the word at the specified position.
40.Locates the start of the word at the specified position.
41.Get Trailing White Space
42.This program demonstrates how to display HTML documents in an editor pane.This program demonstrates how to display HTML documents in an editor pane.