文件名称:用java做的记事本
文件大小:11KB
文件格式:JAVA
更新时间:2012-04-05 11:37:21
java
通过java实现记事本的设计 java.text.*;//日期用 import java.util.Date;//日期用 import java.awt.datatransfer.*; import javax.swing.JColorChooser; public class Jishiben extends Frame implements ActionListener { MenuBar menuBar; //定义菜单条 TextArea textArea=new TextArea(20,50);//定义文本区 public OptionOfFile optionofFile=new OptionOfFile(this); MyClipboard myClipboard=new MyClipboard(); MyFindDialog myFindDialog=new MyFindDialog(this,textArea); Menu menus[]=new Menu[4]; String smenus[]={"文件(F)","编辑(E)","格式(O)","帮助(H)"}; MenuItem fileMenu[]=new MenuItem[4]; String sfileMenu[]={"新建","打开","保存","退出"}; MenuItem editMenu[]=new MenuItem[7]; String seditMenu[]={"剪切","复制","粘贴","删除","时间/日期"}; MenuItem colorItem=new MenuItem("颜色");