文本组件演示2 : 文本 « 图形用户界面 « Java

En
Java
1. 图形用户界面
2. 三维图形动画
3. 高级图形
4. 蚂蚁编译
5. Apache类库
6. 统计图
7. 
8. 集合数据结构
9. 数据类型
10. 数据库JDBC
11. 设计模式
12. 开发相关类
13. EJB3
14. 电子邮件
15. 事件
16. 文件输入输出
17. 游戏
18. 泛型
19. GWT
20. Hibernate
21. 本地化
22. J2EE平台
23. 基于J2ME
24. JDK-6
25. JNDI的LDAP
26. JPA
27. JSP技术
28. JSTL
29. 语言基础知识
30. 网络协议
31. PDF格式RTF格式
32. 映射
33. 常规表达式
34. 脚本
35. 安全
36. Servlets
37. Spring
38. Swing组件
39. 图形用户界面
40. SWT-JFace-Eclipse
41. 线程
42. 应用程序
43. Velocity
44. Web服务SOA
45. 可扩展标记语言
Java 教程
Java » 图形用户界面 » 文本屏幕截图 
文本组件演示2
文本组件演示2
 
/* From http://java.sun.com/docs/books/tutorial/index.html */
/*
 * Copyright (c) 2006 Sun Microsystems, Inc. All Rights Reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * -Redistribution of source code must retain the above copyright notice, this
 *  list of conditions and the following disclaimer.
 *
 * -Redistribution in binary form must reproduce the above copyright notice,
 *  this list of conditions and the following disclaimer in the documentation
 *  and/or other materials provided with the distribution.
 *
 * Neither the name of Sun Microsystems, Inc. or the names of contributors may
 * be used to endorse or promote products derived from this software without
 * specific prior written permission.
 *
 * This software is provided "AS IS," without a warranty of any kind. ALL
 * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING
 * ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
 * OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN MIDROSYSTEMS, INC. ("SUN")
 * AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE
 * AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS
 * DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST
 * REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL,
 * INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY
 * OF LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE THIS SOFTWARE,
 * EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
 *
 * You acknowledge that this software is not designed, licensed or intended
 * for use in the design, construction, operation or maintenance of any
 * nuclear facility.
 */

/*
 * TextComponentDemo.java is a 1.4 application that requires one additional
 * file: DocumentSizeFilter
 */

import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Event;
import java.awt.GridLayout;
import java.awt.Insets;
import java.awt.Rectangle;
import java.awt.Toolkit;
import java.awt.event.ActionEvent;
import java.awt.event.KeyEvent;
import java.util.HashMap;

import javax.swing.AbstractAction;
import javax.swing.Action;
import javax.swing.InputMap;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JSplitPane;
import javax.swing.JTextArea;
import javax.swing.JTextPane;
import javax.swing.KeyStroke;
import javax.swing.SwingUtilities;
import javax.swing.event.CaretEvent;
import javax.swing.event.CaretListener;
import javax.swing.event.DocumentEvent;
import javax.swing.event.DocumentListener;
import javax.swing.event.UndoableEditEvent;
import javax.swing.event.UndoableEditListener;
import javax.swing.text.AbstractDocument;
import javax.swing.text.AttributeSet;
import javax.swing.text.BadLocationException;
import javax.swing.text.DefaultEditorKit;
import javax.swing.text.Document;
import javax.swing.text.DocumentFilter;
import javax.swing.text.JTextComponent;
import javax.swing.text.SimpleAttributeSet;
import javax.swing.text.StyleConstants;
import javax.swing.text.StyledDocument;
import javax.swing.text.StyledEditorKit;
import javax.swing.undo.CannotRedoException;
import javax.swing.undo.CannotUndoException;
import javax.swing.undo.UndoManager;

public class TextComponentDemo extends JFrame {
  JTextPane textPane;

  AbstractDocument doc;

  static final int MAX_CHARACTERS = 300;

  JTextArea changeLog;

  String newline = "\n";

  HashMap actions;

  //undo helpers
  protected UndoAction undoAction;

  protected RedoAction redoAction;

  protected UndoManager undo = new UndoManager();

  public TextComponentDemo() {
    super("TextComponentDemo");

    //Create the text pane and configure it.
    textPane = new JTextPane();
    textPane.setCaretPosition(0);
    textPane.setMargin(new Insets(5555));
    StyledDocument styledDoc = textPane.getStyledDocument();
    if (styledDoc instanceof AbstractDocument) {
      doc = (AbstractDocumentstyledDoc;
      doc.setDocumentFilter(new DocumentSizeFilter(MAX_CHARACTERS));
    else {
      System.err
          .println("Text pane's document isn't an AbstractDocument!");
      System.exit(-1);
    }
    JScrollPane scrollPane = new JScrollPane(textPane);
    scrollPane.setPreferredSize(new Dimension(200200));

    //Create the text area for the status log and configure it.
    changeLog = new JTextArea(530);
    changeLog.setEditable(false);
    JScrollPane scrollPaneForLog = new JScrollPane(changeLog);

    //Create a split pane for the change log and the text area.
    JSplitPane splitPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT,
        scrollPane, scrollPaneForLog);
    splitPane.setOneTouchExpandable(true);

    //Create the status area.
    JPanel statusPane = new JPanel(new GridLayout(11));
    CaretListenerLabel caretListenerLabel = new CaretListenerLabel(
        "Caret Status");
    statusPane.add(caretListenerLabel);

    //Add the components.
    getContentPane().add(splitPane, BorderLayout.CENTER);
    getContentPane().add(statusPane, BorderLayout.PAGE_END);

    //Set up the menu bar.
    createActionTable(textPane);
    JMenu editMenu = createEditMenu();
    JMenu styleMenu = createStyleMenu();
    JMenuBar mb = new JMenuBar();
    mb.add(editMenu);
    mb.add(styleMenu);
    setJMenuBar(mb);

    //Add some key bindings.
    addBindings();

    //Put the initial text into the text pane.
    initDocument();

    //Start watching for undoable edits and caret changes.
    doc.addUndoableEditListener(new MyUndoableEditListener());
    textPane.addCaretListener(caretListenerLabel);
    doc.addDocumentListener(new MyDocumentListener());
  }

  //This listens for and reports caret movements.
  protected class CaretListenerLabel extends JLabel implements CaretListener {
    public CaretListenerLabel(String label) {
      super(label);
    }

    //Might not be invoked from the event dispatching thread.
    public void caretUpdate(CaretEvent e) {
      displaySelectionInfo(e.getDot(), e.getMark());
    }

    //This method can be invoked from any thread. It
    //invokes the setText and modelToView methods, which
    //must run in the event dispatching thread. We use
    //invokeLater to schedule the code for execution
    //in the event dispatching thread.
    protected void displaySelectionInfo(final int dot, final int mark) {
      SwingUtilities.invokeLater(new Runnable() {
        public void run() {
          if (dot == mark) { // no selection
            try {
              Rectangle caretCoords = textPane.modelToView(dot);
              //Convert it to view coordinates.
              setText("caret: text position: " + dot
                  ", view location = [" + caretCoords.x
                  ", " + caretCoords.y + "]" + newline);
            catch (BadLocationException ble) {
              setText("caret: text position: " + dot + newline);
            }
          else if (dot < mark) {
            setText("selection from: " + dot + " to " + mark
                + newline);
          else {
            setText("selection from: " + mark + " to " + dot
                + newline);
          }
        }
      });
    }
  }

  //This one listens for edits that can be undone.
  protected class MyUndoableEditListener implements UndoableEditListener {
    public void undoableEditHappened(UndoableEditEvent e) {
      //Remember the edit and update the menus.
      undo.addEdit(e.getEdit());
      undoAction.updateUndoState();
      redoAction.updateRedoState();
    }
  }

  //And this one listens for any changes to the document.
  protected class MyDocumentListener implements DocumentListener {
    public void insertUpdate(DocumentEvent e) {
      displayEditInfo(e);
    }

    public void removeUpdate(DocumentEvent e) {
      displayEditInfo(e);
    }

    public void changedUpdate(DocumentEvent e) {
      displayEditInfo(e);
    }

    private void displayEditInfo(DocumentEvent e) {
      Document document = (Documente.getDocument();
      int changeLength = e.getLength();
      changeLog.append(e.getType().toString() ": " + changeLength
          " character" ((changeLength == 1". " "s. ")
          " Text length = " + document.getLength() "." + newline);
    }
  }

  //Add a couple of emacs key bindings for navigation.
  protected void addBindings() {
    InputMap inputMap = textPane.getInputMap();

    //Ctrl-b to go backward one character
    KeyStroke key = KeyStroke.getKeyStroke(KeyEvent.VK_B, Event.CTRL_MASK);
    inputMap.put(key, DefaultEditorKit.backwardAction);

    //Ctrl-f to go forward one character
    key = KeyStroke.getKeyStroke(KeyEvent.VK_F, Event.CTRL_MASK);
    inputMap.put(key, DefaultEditorKit.forwardAction);

    //Ctrl-p to go up one line
    key = KeyStroke.getKeyStroke(KeyEvent.VK_P, Event.CTRL_MASK);
    inputMap.put(key, DefaultEditorKit.upAction);

    //Ctrl-n to go down one line
    key = KeyStroke.getKeyStroke(KeyEvent.VK_N, Event.CTRL_MASK);
    inputMap.put(key, DefaultEditorKit.downAction);
  }

  //Create the edit menu.
  protected JMenu createEditMenu() {
    JMenu menu = new JMenu("Edit");

    //Undo and redo are actions of our own creation.
    undoAction = new UndoAction();
    menu.add(undoAction);

    redoAction = new RedoAction();
    menu.add(redoAction);

    menu.addSeparator();

    //These actions come from the default editor kit.
    //Get the ones we want and stick them in the menu.
    menu.add(getActionByName(DefaultEditorKit.cutAction));
    menu.add(getActionByName(DefaultEditorKit.copyAction));
    menu.add(getActionByName(DefaultEditorKit.pasteAction));

    menu.addSeparator();

    menu.add(getActionByName(DefaultEditorKit.selectAllAction));
    return menu;
  }

  //Create the style menu.
  protected JMenu createStyleMenu() {
    JMenu menu = new JMenu("Style");

    Action action = new StyledEditorKit.BoldAction();
    action.putValue(Action.NAME, "Bold");
    menu.add(action);

    action = new StyledEditorKit.ItalicAction();
    action.putValue(Action.NAME, "Italic");
    menu.add(action);

    action = new StyledEditorKit.UnderlineAction();
    action.putValue(Action.NAME, "Underline");
    menu.add(action);

    menu.addSeparator();

    menu.add(new StyledEditorKit.FontSizeAction("12"12));
    menu.add(new StyledEditorKit.FontSizeAction("14"14));
    menu.add(new StyledEditorKit.FontSizeAction("18"18));

    menu.addSeparator();

    menu.add(new StyledEditorKit.FontFamilyAction("Serif""Serif"));
    menu
        .add(new StyledEditorKit.FontFamilyAction("SansSerif",
            "SansSerif"));

    menu.addSeparator();

    menu.add(new StyledEditorKit.ForegroundAction("Red", Color.red));
    menu.add(new StyledEditorKit.ForegroundAction("Green", Color.green));
    menu.add(new StyledEditorKit.ForegroundAction("Blue", Color.blue));
    menu.add(new StyledEditorKit.ForegroundAction("Black", Color.black));

    return menu;
  }

  protected void initDocument() {
    String initString[] "Use the mouse to place the caret.",
        "Use the edit menu to cut, copy, paste, and select text.",
        "Also to undo and redo changes.",
        "Use the style menu to change the style of the text.",
        "Use these emacs key bindings to move the caret:",
        "ctrl-f, ctrl-b, ctrl-n, ctrl-p." };

    SimpleAttributeSet[] attrs = initAttributes(initString.length);

    try {
      for (int i = 0; i < initString.length; i++) {
        doc.insertString(doc.getLength(), initString[i+ newline,
            attrs[i]);
      }
    catch (BadLocationException ble) {
      System.err.println("Couldn't insert initial text.");
    }
  }

  protected SimpleAttributeSet[] initAttributes(int length) {
    //Hard-code some attributes.
    SimpleAttributeSet[] attrs = new SimpleAttributeSet[length];

    attrs[0new SimpleAttributeSet();
    StyleConstants.setFontFamily(attrs[0]"SansSerif");
    StyleConstants.setFontSize(attrs[0]16);

    attrs[1new SimpleAttributeSet(attrs[0]);
    StyleConstants.setBold(attrs[1]true);

    attrs[2new SimpleAttributeSet(attrs[0]);
    StyleConstants.setItalic(attrs[2]true);

    attrs[3new SimpleAttributeSet(attrs[0]);
    StyleConstants.setFontSize(attrs[3]20);

    attrs[4new SimpleAttributeSet(attrs[0]);
    StyleConstants.setFontSize(attrs[4]12);

    attrs[5new SimpleAttributeSet(attrs[0]);
    StyleConstants.setForeground(attrs[5], Color.red);

    return attrs;
  }

  //The following two methods allow us to find an
  //action provided by the editor kit by its name.
  private void createActionTable(JTextComponent textComponent) {
    actions = new HashMap();
    Action[] actionsArray = textComponent.getActions();
    for (int i = 0; i < actionsArray.length; i++) {
      Action a = actionsArray[i];
      actions.put(a.getValue(Action.NAME), a);
    }
  }

  private Action getActionByName(String name) {
    return (Action) (actions.get(name));
  }

  class UndoAction extends AbstractAction {
    public UndoAction() {
      super("Undo");
      setEnabled(false);
    }

    public void actionPerformed(ActionEvent e) {
      try {
        undo.undo();
      catch (CannotUndoException ex) {
        System.out.println("Unable to undo: " + ex);
        ex.printStackTrace();
      }
      updateUndoState();
      redoAction.updateRedoState();
    }

    protected void updateUndoState() {
      if (undo.canUndo()) {
        setEnabled(true);
        putValue(Action.NAME, undo.getUndoPresentationName());
      else {
        setEnabled(false);
        putValue(Action.NAME, "Undo");
      }
    }
  }

  class RedoAction extends AbstractAction {
    public RedoAction() {
      super("Redo");
      setEnabled(false);
    }

    public void actionPerformed(ActionEvent e) {
      try {
        undo.redo();
      catch (CannotRedoException ex) {
        System.out.println("Unable to redo: " + ex);
        ex.printStackTrace();
      }
      updateRedoState();
      undoAction.updateUndoState();
    }

    protected void updateRedoState() {
      if (undo.canRedo()) {
        setEnabled(true);
        putValue(Action.NAME, undo.getRedoPresentationName());
      else {
        setEnabled(false);
        putValue(Action.NAME, "Redo");
      }
    }
  }

  /**
   * Create the GUI and show it. For thread safety, this method should be
   * invoked from the event-dispatching thread.
   */
  private static void createAndShowGUI() {
    //Make sure we have nice window decorations.
    JFrame.setDefaultLookAndFeelDecorated(true);

    //Create and set up the window.
    final TextComponentDemo frame = new TextComponentDemo();
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    //Display the window.
    frame.pack();
    frame.setVisible(true);
  }

  //The standard main method.
  public static void main(String[] args) {
    //Schedule a job for the event-dispatching thread:
    //creating and showing this application's GUI.
    javax.swing.SwingUtilities.invokeLater(new Runnable() {
      public void run() {
        createAndShowGUI();
      }
    });
  }
}

/* A 1.4 class used by TextComponentDemo.java. */

class DocumentSizeFilter extends DocumentFilter {
  int maxCharacters;

  boolean DEBUG = false;

  public DocumentSizeFilter(int maxChars) {
    maxCharacters = maxChars;
  }

  public void insertString(FilterBypass fb, int offs, String str,
      AttributeSet athrows BadLocationException {
    if (DEBUG) {
      System.out.println("in DocumentSizeFilter's insertString method");
    }

    //This rejects the entire insertion if it would make
    //the contents too long. Another option would be
    //to truncate the inserted string so the contents
    //would be exactly maxCharacters in length.
    if ((fb.getDocument().getLength() + str.length()) <= maxCharacters)
      super.insertString(fb, offs, str, a);
    else
      Toolkit.getDefaultToolkit().beep();
  }

  public void replace(FilterBypass fb, int offs, int length, String str,
      AttributeSet athrows BadLocationException {
    if (DEBUG) {
      System.out.println("in DocumentSizeFilter's replace method");
    }
    //This rejects the entire replacement if it would make
    //the contents too long. Another option would be
    //to truncate the replacement string so the contents
    //would be exactly maxCharacters in length.
    if ((fb.getDocument().getLength() + str.length() - length<= maxCharacters)
      super.replace(fb, offs, length, str, a);
    else
      Toolkit.getDefaultToolkit().beep();
  }

}

           
         
  
Related examples in the same category
1. 创建一个JTextArea组件
2. 插入到第五个字符后
3. 删除第5个字符
4. 在JTextArea组件列举行
5. 修改文字JTextArea组件
6. 自定义插入级自定义插入级
7. 查看行偏移JTextArea查看行偏移JTextArea
8. TransferHandler和JTextAreaTransferHandler和JTextArea
9. 下拉:文本下拉:文本
10. 拖放:文本2拖放:文本2
11. 加字符演示加字符演示
12. 文本背景图片文本背景图片
13. 剪下粘贴示例剪下粘贴示例
14. 文本范例文本范例
15. 多行文本控件范例多行文本控件范例
16. 文本折行文本折行
17. 在文本控件替换文字在文本控件替换文字
18. 文字边界文字边界
19. TextField的范例TextField的范例
20. 多行文本控件元素2多行文本控件元素2
21. 多行文本控件元素多行文本控件元素
22. 多行文本控件视图2多行文本控件视图2
23. 多行文本控件视图3多行文本控件视图3
24. 多行文本控件Unicode多行文本控件Unicode
25. 国际化图形用户界面:统一字码剪切和粘贴国际化图形用户界面:统一字码剪切和粘贴
26. 示范文本组件示范文本组件
27. 文字输入演示文字输入演示
28. 文本组件演示文本组件演示
29. 分享多行文本控件模型分享多行文本控件模型
30. Set the start of the selection; ignored if new start is < end
31. Set the end of the selection; ignored if new end is > start
32. 设置插入颜色
33. 简单的编辑器演示简单的编辑器演示
34. 设置标签大小JTextArea组件
35. Moving the Focus with the TAB Key in a JTextArea Component
36. Enabling Word-Wrapping and Line-Wrapping in a JTextArea Component
37. 附加一些文字JTextArea
38. 替换第3个字符
39. 文字折行
40. 列举内容要素与ElementIterator
41. 突出discontinous字符串
42. 从一个到另一个文本,复制选中的文字
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.