时间:2021-05-20
本文实例讲述了Java实现的简易记事本。分享给大家供大家参考。具体如下:
感觉这个没有自己以前用Windows API写的好看了。。。
JDK Version : 1.7.0
效果如下图所示:
源代码如下:
import java.io.*; import java.awt.*; import java.awt.event.*; /** * The Main Window * @author Neo Smith */ class PadFrame extends Frame { private MenuBar mb; private Menu menuFile; private Menu menuEdit; private MenuItem[] miFile; private TextArea ta; final private Frame frame = this; /** * The inner class * Message Handle */ class EventExit implements ActionListener { public void actionPerformed(ActionEvent e) { System.exit(0); } } class SystemExit extends WindowAdapter { public void windowClosing(WindowEvent e) { System.exit(0); } } class EventMenuClose implements ActionListener { public void actionPerformed(ActionEvent e) { ta.setText(null); } } class EventOpenFile implements ActionListener { public void actionPerformed(ActionEvent e) { //Create the OpenFile Dialog FileDialog dlg = new FileDialog(frame,"Open Files",FileDialog.LOAD); dlg.show(); String strPath; if((strPath = dlg.getDirectory()) != null) { //get the full path of the selected file strPath += dlg.getFile(); //open the file try { FileInputStream fis = new FileInputStream(strPath); BufferedInputStream bis = new BufferedInputStream(fis); byte[] buf = new byte[3000]; int len = bis.read(buf); ta.append(new String(buf,0,len)); bis.close(); } catch(Exception ex) { ex.printStackTrace(); } } } } /** * Construction Method * Adding Menu and TextArea components * @param strTitle */ public PadFrame(String strTitle) { super(strTitle); this.setLocation(400,200); this.setSize(900, 630); //Create the Menu Bar mb = new MenuBar(); menuFile = new Menu("File"); menuEdit = new Menu("Edit"); miFile = new MenuItem[]{new MenuItem("Open"),new MenuItem("Close"),new MenuItem("Exit")}; this.setMenuBar(mb); mb.add(menuFile); mb.add(menuEdit); for(int i = 0 ; i < miFile.length ; ++i) { menuFile.add(miFile[i]); } //Add event handle setMenuEventHandle(new EventExit(),"File",2); setMenuEventHandle(new EventOpenFile(),"File",0); setMenuEventHandle(new EventMenuClose(),"File",1); this.addWindowListener(new SystemExit()); //add the TextArea component ta = new TextArea(30,30); this.add(ta); } public void setMenuEventHandle(ActionListener al,String strMenu,int index) { if(strMenu == "File") { miFile[index].addActionListener(al); } } public int getMenuItemAmount(String strMenu) { if("File" == strMenu) { return miFile.length; } return -1; } public static void main(String[] args) { PadFrame f = new PadFrame("NotePad"); f.show(); } }希望本文所述对大家的java程序设计有所帮助。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
自己编写了一个记事本程序,记事本程序使用WinForm的RichTextBox控件实现。这个程序在Windows记事本的基础上添加了改变记事本背景颜色,设置记事
下面是一段生成记事本的ASP源码:生成记事本:读取记事本:
删除小黑记事本的方法: 小黑记事本是一款电脑记事本软件。可取代系统自带的记事本软件,不仅拥有Windows自带记事本功能,还为用户添加了许多的背景,软透明模式
今天用记事本写了一个java程序,测试能运行,现在把它分解成几个步骤,利于大家理解:1.新建一个记事本,后缀名是.java;然后在里面写一段java的代码,如图
小黑记事本是用户用来记录一些重要的事情的一款软件。 小黑记事本是一款电脑记事本软件。可取代系统自带的记事本软件,不仅拥有Windows自带记事本功能,还为用户