新手木林

java.awt: 自定义的简单记事本

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
package com.guiAWT;
 
 
import java.awt.FileDialog;
import java.awt.Frame;
import java.awt.Menu;
import java.awt.MenuBar;
import java.awt.MenuItem;
import java.awt.TextArea;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
 
/***
 * java.awt: 自定义的简单记事本
 * @author caojsvm
 *
 */
public class MyJavaNotepad {
    private final String frameName = "MyFrame";
    private Frame f;
    private TextArea ta;
     
    private MenuBar menuBar;
    private Menu menu;
    private MenuItem menuItemExit;
    private MenuItem menuItemOpen,menuItemSave,menuItemSaveAs;
     
    private FileDialog openDg,saveDg;
     
    private File file;
    public MyJavaNotepad() {
        //初始化
        init();
    }
     
     
    //初始化参数
    private void init() {
        this.f = new Frame(frameName);
         
        /*************对Frame进行基本设置****************/
        //设置位置坐标、窗口大小: void setBounds(int x, int y, int width, int height)
        this.f.setBounds(600, 100, 800, 900);
 
        //使用默认布局管理器,不做更改
         
         
        //初始化TextArea文本区域
        ta = new TextArea(50,100);
         
        //初始化菜单栏
        menuBar = new MenuBar();
        //初始化菜单
        menu = new Menu("File");
         
        //初始化二级菜单
        menuItemOpen = new MenuItem("open file...");
        menuItemExit = new MenuItem("exit");
        menuItemSave = new MenuItem("save file");
        menuItemSaveAs = new MenuItem("save as...");
         
        //建立关系
        //添加二级菜单
        menu.add(menuItemOpen);
        menu.add(menuItemSave);
        menu.add(menuItemSaveAs);
        menu.add(menuItemExit);
         
         
        //添加菜单
        menuBar.add(menu);
         
        //窗体中添加菜单栏
        this.f.setMenuBar(menuBar);
         
        //添加组件
        this.f.add(ta);
         
         
        //加载窗体及组件的事件
        frameEvent();
         
        //显示窗口
        this.f.setVisible(true);
         
    }
     
    /***
     * 给窗体和组件添加事件
     */
    private void frameEvent() {
        //给窗体添加事件
        //查阅Frame类的父类Window的方法找到添加监听方法
        //查阅WindowListener监听API发现,这个接口有很多方法,所以找其适配器(实现类)WindowAdapter。
        //一般接口超过3个方法,都会有对应的适配器。
        this.f.addWindowListener(
                new WindowAdapter() {
                    //关闭窗口
                    public void windowClosing(WindowEvent e) {
                        System.out.println("关闭窗口");
                        System.exit(0);
                    }
                }
        );
         
        //菜单事件
        this.menuItemExit.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent e) {
                System.out.println("点击菜单---exit...关闭窗口退出程序");
                System.exit(0);
            }
        });
         
        //菜单打开文件事件
        this.menuItemOpen.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent e) {
                System.out.println("点击菜单---open...打开文件");
                //加载打开文本框
                openFileDialogInit();
                 
                //显示打开文件框
                openDg.setVisible(true);
                 
                //把FileDialog中选中的文件显示在TextArea文本区域中
                openFile();
            }
        });
         
         
        //菜单保存文件事件
        this.menuItemSave.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent e) {
                System.out.println("点击菜单---save...保存文件");
                saveFileDialogInit();
                 
                saveFile();
            }
        });
         
        //菜单另存文件事件
        this.menuItemSaveAs.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent e) {
                System.out.println("点击菜单---save as...保存文件");
                saveFileDialogInit();
                 
                saveAsFile();
            }
        });
    }
     
     
    /**
     * 初始化文件对话框
     * public FileDialog(Frame parent,String title,int mode)
     *   参数:
     *    parent - 对话框的所有者
     *    title - 对话框的标题
     *    mode - 对话框的模式,可以是 FileDialog.LOAD 或 FileDialog.SAVE
     */
    private void openFileDialogInit(){
        openDg = new FileDialog(this.f, "open File...");
    }
     
    /**
     * 初始化文件对话框
     */
    private void saveFileDialogInit(){
        saveDg = new FileDialog(this.f, "save File...",FileDialog.SAVE);
    }
     
     
    /**
     * 把打开的文件显示在文本区域中
     */
    private void openFile(){
        //获取文件路径
        String dir = openDg.getDirectory();
        //System.out.println(dir);
        //获取文件名
        String fileName = openDg.getFile();
        //System.out.println(fileName);
         
        //由于点取消时,目录或文件名可能为空,会导致后面创建File对象时出现异常
        //因此要在这里做判断
        if(dir == null || fileName == null){
            return ;
        }
         
        //读取文件
        file = new File(dir,fileName);
        //System.out.println(file);
        BufferedReader buffr = null;
        try {
            //先清空一下文本区域,防止每次打开文件都追加到上次文件的后面
            this.ta.setText("");
             
            buffr = new BufferedReader(new FileReader(file));
            String str = null;
            while((str = buffr.readLine()) != null){
                this.ta.append(str+"\r\n");
            }
            //回显目录
            this.f.setTitle(frameName+" : "+file.toString());
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        } finally{
            try {
                if(buffr != null){
                    buffr.close();
                }
            } catch (Exception e2) {
                e2.printStackTrace();
            }
        }
         
    }
     
    /**
     * 把文本区域中的内容保存到所选文件中
     */
    private void saveFile(){
         
        System.out.println("file="+file);
         
        if(file == null){
         
            saveDg.setVisible(true);
             
            //获取文件路径
            String dir = saveDg.getDirectory();
            //System.out.println(dir);
            //获取文件名
            String fileName = saveDg.getFile();
            //System.out.println(fileName);
             
            //由于点取消时,目录或文件名可能为空,会导致后面创建File对象时出现异常
            //因此要在这里做判断
            if(dir == null || fileName == null){
                return ;
            }
             
            //读取文件
            file = new File(dir,fileName);
        }
        //System.out.println(file);
        BufferedWriter buffw = null;
        try {
            String str = this.ta.getText();
            buffw = new BufferedWriter(new FileWriter(file));
            buffw.write(str);
             
            buffw.flush();
             
            System.out.println("保存文件成功");
            //回显目录
            this.f.setTitle(frameName+" : "+file.toString());
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        } finally{
            try {
                if(buffw != null){
                    buffw.close();
                }
            } catch (Exception e2) {
                e2.printStackTrace();
            }
        }
         
         
    }
     
    /**
     * 把文本区域中的内容另存到所选文件中
     */
    private void saveAsFile(){
        saveDg.setVisible(true);
         
        //获取文件路径
        String dir = saveDg.getDirectory();
        //System.out.println(dir);
        //获取文件名
        String fileName = saveDg.getFile();
        //System.out.println(fileName);
         
        //由于点取消时,目录或文件名可能为空,会导致后面创建File对象时出现异常
        //因此要在这里做判断
        if(dir == null || fileName == null){
            return ;
        }
         
        //读取文件
        file = new File(dir,fileName);
     
        //System.out.println(file);
        BufferedWriter buffw = null;
        try {
            String str = this.ta.getText();
            buffw = new BufferedWriter(new FileWriter(file));
            buffw.write(str);
             
            buffw.flush();
             
            System.out.println("保存文件成功");
             
            //回显目录
            this.f.setTitle(frameName+" : "+file.toString());
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        } finally{
            try {
                if(buffw != null){
                    buffw.close();
                }
            } catch (Exception e2) {
                e2.printStackTrace();
            }
        }
    }
     
     
    /**
     * @param args
     */
    public static void main(String[] args) {
        new MyJavaNotepad();
    }
 
}

  

posted on 2022-03-02 14:36  新手木林  阅读(59)  评论(0)    收藏  举报

< 2025年7月 >
29 30 1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 31 1 2
3 4 5 6 7 8 9

导航

统计

点击右上角即可分享
微信分享提示