在JTextArea中实现Redo和Undo功能

在JTextArea中实现Redo和Undo功能,其实真正操控Undo、Redo功能的是Document、UndoManager,下面是实现代码:

import java.awt.BorderLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import javax.swing.event.UndoableEditEvent;
import javax.swing.text.Document;
import javax.swing.undo.UndoManager;

/**
 * 在JTextArea中实现Redo和Undo功能
 * @author 五斗米 <如转载请保留作者和出处>
 * @blog http://blog.csdn.net/mq612
 */

public class Test extends JFrame {

 private static final long serialVersionUID = -2397593626990759111L;

 private JPanel pane = null;

 private JButton undo = null, redo = null;

 private JScrollPane sPane = null;

 private JTextArea text = null;

 private Document doc = null;

 private UndoManager undomang = null;

 public Test() {
  super("Redo and Undo");
  undomang = new UndoManager(){
   private static final long serialVersionUID = -5960092671497318496L;
   public void undoableEditHappened(UndoableEditEvent e) {
    this.addEdit(e.getEdit());
   }
  };
  text = new JTextArea();
  doc = text.getDocument();
  redo = new JButton(">>");
  undo = new JButton("<<");
  undo.addActionListener(new ActionListener() {
   public void actionPerformed(ActionEvent arg0) {
    if (undomang.canUndo())
     undomang.undo();
   }
  });
  redo.addActionListener(new ActionListener() {
   public void actionPerformed(ActionEvent e) {
    if (undomang.canRedo())
     undomang.redo();
   }
  });
  pane = new JPanel();
  pane.add(undo);
  pane.add(redo);
  doc.addUndoableEditListener(undomang);
  sPane = new JScrollPane(text);
  this.getContentPane().add(sPane);
  this.getContentPane().add(pane, BorderLayout.NORTH);
  this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  this.setSize(300, 200);
  this.setVisible(true);
 }

 public static void main(String args[]) {
  new Test();
 }

}

 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值