返回列表 發帖

文字編輯器 (八)





使用 JOptionPane 類別下的 showMessageDialog() 方法完成 "關於 MyEditor" 的對應動作。
  1. import java.awt.Font;
  2. import javax.swing.JFileChooser;
  3. import javax.swing.JFrame;
  4. import javax.swing.JMenu;
  5. import javax.swing.JMenuBar;
  6. import javax.swing.JMenuItem;
  7. import javax.swing.JOptionPane;
  8. //import javax.swing.JDialog;
  9. import javax.swing.JScrollPane;
  10. import javax.swing.JTextArea;
  11. import javax.swing.ImageIcon;
  12. import javax.swing.UIManager;
  13. import javax.swing.border.BevelBorder;
  14. import javax.swing.filechooser.FileNameExtensionFilter;
  15. import java.awt.event.ActionListener;
  16. import java.awt.event.ActionEvent;
  17. import java.io.BufferedReader;
  18. import java.io.BufferedWriter;
  19. import java.io.File;
  20. import java.io.FileReader;
  21. import java.io.FileWriter;

  22. public class Ch08 implements ActionListener{
  23.        
  24.         String title="My Editor";
  25.         JFrame fm;
  26.         JScrollPane sp;
  27.         JTextArea ta;
  28.         ImageIcon ic,ic_cut,ic_exit,ic_new,ic_open,ic_paste,ic_save,ic_copy,ic_selectall,ic_about,ic_developer;
  29.         JMenuBar mb;
  30.         JMenu mn_file,mn_edit,mn_help;
  31.         JMenuItem mi_new,mi_open,mi_save,mi_exit,mi_copy,mi_paste,mi_cut,mi_selectall,mi_about;
  32.         JFileChooser fc;
  33.         FileNameExtensionFilter filter1;
  34.        
  35.         void initialize()
  36.         {
  37.                 try {
  38.                         UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
  39.                 } catch (Exception e){}

  40.                 filter1=new FileNameExtensionFilter("純文字文件","txt");
  41.                
  42.                 fc=new JFileChooser();
  43.                 //fc.addChoosableFileFilter(filter1);
  44.                 fc.setFileFilter(filter1);
  45.                
  46.                 ic=new ImageIcon(Ch08.class.getResource("pic/editor.png"));
  47.                 ic_cut=new ImageIcon(Ch08.class.getResource("pic/cut.png"));
  48.                 ic_exit=new ImageIcon(Ch08.class.getResource("pic/exit.png"));
  49.                 ic_new=new ImageIcon(Ch08.class.getResource("pic/new.png"));
  50.                 ic_open=new ImageIcon(Ch08.class.getResource("pic/open.png"));
  51.                 ic_paste=new ImageIcon(Ch08.class.getResource("pic/paste.png"));
  52.                 ic_save=new ImageIcon(Ch08.class.getResource("pic/save.png"));
  53.                 ic_copy=new ImageIcon(Ch08.class.getResource("pic/copy.png"));
  54.                 ic_selectall=new ImageIcon(Ch08.class.getResource("pic/selectall.png"));
  55.                 ic_about=new ImageIcon(Ch08.class.getResource("pic/about.png"));
  56.                 ic_developer=new ImageIcon(Ch08.class.getResource("pic/developer.png"));
  57.                
  58.                 mi_new=new JMenuItem("開新檔案",ic_new);
  59.                 mi_new.addActionListener(this);
  60.                 mi_open=new JMenuItem("開啟舊檔",ic_open);
  61.                 mi_open.addActionListener(this);
  62.                 mi_save=new JMenuItem("儲存檔案",ic_save);
  63.                 mi_save.addActionListener(this);
  64.                 mi_exit=new JMenuItem("結束",ic_exit);
  65.                 mi_exit.addActionListener(this);
  66.                 mi_copy=new JMenuItem("複製",ic_copy);
  67.                 mi_copy.addActionListener(this);
  68.                 mi_paste=new JMenuItem("貼上",ic_paste);
  69.                 mi_paste.addActionListener(this);
  70.                 mi_cut=new JMenuItem("剪下",ic_cut);
  71.                 mi_cut.addActionListener(this);
  72.                 mi_selectall=new JMenuItem("全選",ic_selectall);
  73.                 mi_selectall.addActionListener(this);
  74.                 mi_about=new JMenuItem("關於 My Editor",ic_about);
  75.                 mi_about.addActionListener(this);
  76.                
  77.                 mn_file=new JMenu(" 檔案(F) ");
  78.                 mn_file.setMnemonic('F');     //設定快速鍵
  79.                 mn_file.add(mi_new);
  80.                 mn_file.add(mi_open);
  81.                 mn_file.add(mi_save);
  82.                 mn_file.addSeparator();    //分隔線
  83.                 mn_file.add(mi_exit);
  84.                
  85.                 mn_edit=new JMenu(" 編輯(E) ");
  86.                 mn_edit.setMnemonic('E');     //設定快速鍵
  87.                 mn_edit.add(mi_copy);
  88.                 mn_edit.add(mi_paste);
  89.                 mn_edit.add(mi_cut);
  90.                 mn_edit.addSeparator();
  91.                 mn_edit.add(mi_selectall);
  92.                
  93.                 mn_help=new JMenu(" 說明(H) ");
  94.                 mn_help.setMnemonic('H');     //設定快速鍵
  95.                 mn_help.add(mi_about);

  96.                
  97.                 mb=new JMenuBar();
  98.                 mb.setBorder(new BevelBorder(BevelBorder.RAISED));   //設定具陰影效果的邊框
  99.                 mb.add(mn_file);
  100.                 mb.add(mn_edit);
  101.                 mb.add(mn_help);
  102.                
  103.                 ta=new JTextArea();
  104.                 ta.setFont(new Font("新細明體", Font.PLAIN, 18));
  105.                 ta.setLineWrap(true);     //自動換行
  106.                
  107.                 sp=new JScrollPane(ta);
  108.                
  109.                 fm=new JFrame(title+" - 未命名");
  110.                 fm.setBounds(100, 100, 500, 350);
  111.                 fm.setIconImage(ic.getImage());
  112.                 fm.setVisible(true);
  113.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  114.                 fm.add(sp);
  115.                 fm.setJMenuBar(mb);
  116.         }
  117.        
  118.         Ch08()
  119.         {
  120.                 initialize();
  121.         }
  122.        
  123.         public void actionPerformed(ActionEvent e)
  124.         {
  125.                 if(e.getSource()==mi_new)
  126.                 {
  127.                     ta.setText("");
  128.                     fm.setTitle(title+" - 未命名");
  129.                 }
  130.                 else if(e.getSource()==mi_open)
  131.                 {
  132.                         int ret=fc.showOpenDialog(null);
  133.                         if(ret==JFileChooser.APPROVE_OPTION)
  134.                         {
  135.                                 try
  136.                                 {
  137.                                         String str;
  138.                                         File fi=fc.getSelectedFile();
  139.                                         BufferedReader br=new BufferedReader(new FileReader(fi.getAbsolutePath()));
  140.                                         ta.setText(br.readLine());
  141.                                         do
  142.                                         {
  143.                                                 str=br.readLine();
  144.                                                 if(str==null)
  145.                                                         break;
  146.                                                 ta.append("\n"+str);
  147.                                         }while(true);
  148.                                         br.close();
  149.                                         fm.setTitle(title+" - "+fc.getName(fi));
  150.                                 }catch(Exception ex){}
  151.                                
  152.                         }       
  153.                 }
  154.                 else if(e.getSource()==mi_save)
  155.                 {
  156.                         int ret=fc.showSaveDialog(null);
  157.                         if(ret==JFileChooser.APPROVE_OPTION)
  158.                         {
  159.                                 try
  160.                                 {
  161.                                         File fi=fc.getSelectedFile();
  162.                                         BufferedWriter bw;
  163.                                         String ext=fi.getAbsolutePath().substring(fi.getAbsolutePath().length()-4);   //file extension 副檔名
  164.                                         System.out.println(ext);
  165.                                         String fiPath="";
  166.                                         if(fc.getFileFilter()==filter1)
  167.                                         {
  168.                                                 if(ext.equals(".txt"))
  169.                                                         fiPath=fi.getAbsolutePath();
  170.                                             else
  171.                                                     fiPath=fi.getAbsolutePath()+".txt";       
  172.                                         }
  173.                                         else
  174.                                                 fiPath=fi.getAbsolutePath();
  175.                                         bw=new BufferedWriter(new FileWriter(fiPath));
  176.                                        
  177.                                         bw.write(ta.getText().replaceAll("\n", "\r\n"));
  178.                                         //windows下的文字檔分行符號:\r\n  linux/unix下的文字檔分行符號:\r  Mac下的文字檔分行符號:\n
  179.                                         bw.flush();
  180.                                         bw.close();
  181.                                         fm.setTitle(title+" - "+fc.getName(fi));
  182.                                 }catch(Exception ex){}
  183.                         }       
  184.                 }
  185.                 else if(e.getSource()==mi_exit)
  186.                         System.exit(0);
  187.                 else if(e.getSource()==mi_copy)
  188.                     ta.copy();
  189.                 else if(e.getSource()==mi_paste)
  190.                         ta.paste();
  191.                 else if(e.getSource()==mi_cut)
  192.             ta.cut();
  193.                 else if(e.getSource()==mi_selectall)
  194.                         ta.selectAll();
  195.                 else if(e.getSource()==mi_about)
  196.                 {
  197.                         String msg="本軟體由社團法人高雄市資訊培育協會青少年程式設計班學員\n林宇翔所開發,感謝您的使用!";
  198.                         JOptionPane.showMessageDialog(fm,msg,"關於 My Editor",JOptionPane.INFORMATION_MESSAGE,ic_developer);
  199.                 }
  200.         }
  201.        
  202.         public static void main(String[] args) {
  203.                 new Ch08();
  204.         }
  205. }
複製代碼


  1. import java.awt.Font;
  2. import java.awt.event.ActionEvent;
  3. import java.awt.event.ActionListener;
  4. import java.io.BufferedReader;
  5. import java.io.BufferedWriter;
  6. import java.io.File;
  7. import java.io.FileNotFoundException;
  8. import java.io.FileReader;
  9. import java.io.FileWriter;
  10. import java.io.IOException;

  11. import javax.swing.ImageIcon;
  12. import javax.swing.JFileChooser;
  13. import javax.swing.JFrame;
  14. import javax.swing.JMenu;
  15. import javax.swing.JMenuBar;
  16. import javax.swing.JMenuItem;
  17. import javax.swing.JOptionPane;
  18. import javax.swing.JScrollPane;
  19. import javax.swing.JTextArea;
  20. import javax.swing.UIManager;
  21. import javax.swing.border.BevelBorder;
  22. import javax.swing.filechooser.FileNameExtensionFilter;


  23. public class Ch04 implements ActionListener{

  24.         JFrame fm;
  25.         JScrollPane sp;
  26.         JTextArea ta;
  27.         JMenuBar mb;
  28.         JMenu mn_file, mn_edit, mn_help;
  29.         JMenuItem mi_new, mi_open, mi_save, mi_exit, mi_copy, mi_paste, mi_cut, mi_selectall, mi_about;
  30.         ImageIcon ic, ii_new, ii_open, ii_save, ii_exit, ii_copy, ii_paste, ii_cut, ii_selectall, ii_about, ii_developer;
  31.         JFileChooser fc;
  32.         FileNameExtensionFilter filter;
  33.        
  34.         Ch04()
  35.         {
  36.                 initialize();
  37.         }

  38.         void initialize()
  39.         {
  40.                 try {
  41.                         UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
  42.                 } catch (Exception e) {}

  43.                 ic=new ImageIcon(Ch04.class.getResource("pic/editor.png"));
  44.                 ii_new=new ImageIcon(Ch04.class.getResource("pic/new.png"));
  45.                 ii_open=new ImageIcon(Ch04.class.getResource("pic/open.png"));
  46.                 ii_save=new ImageIcon(Ch04.class.getResource("pic/save.png"));
  47.                 ii_exit=new ImageIcon(Ch04.class.getResource("pic/exit.png"));
  48.                 ii_copy=new ImageIcon(Ch04.class.getResource("pic/copy.png"));
  49.                 ii_paste=new ImageIcon(Ch04.class.getResource("pic/paste.png"));
  50.                 ii_cut=new ImageIcon(Ch04.class.getResource("pic/cut.png"));
  51.                 ii_selectall=new ImageIcon(Ch04.class.getResource("pic/selectall.png"));
  52.                 ii_about=new ImageIcon(Ch04.class.getResource("pic/about.png"));
  53.         ii_developer=new ImageIcon(Ch04.class.getResource("pic/developer.png"));

  54.                 filter=new FileNameExtensionFilter("純文字檔案", "txt");
  55.                
  56.                 fc=new JFileChooser();
  57.                 fc.addChoosableFileFilter(filter);
  58.                 fc.setFileFilter(filter);

  59.                 mi_new=new JMenuItem("開新檔案",ii_new);
  60.                 mi_new.addActionListener(this);
  61.                 mi_open=new JMenuItem("開啟舊檔",ii_open);
  62.                 mi_open.addActionListener(this);
  63.                 mi_save=new JMenuItem("儲存檔案",ii_save);
  64.                 mi_save.addActionListener(this);
  65.                 mi_exit=new JMenuItem("結束",ii_exit);
  66.                 mi_exit.addActionListener(this);
  67.                 mi_copy=new JMenuItem("複製",ii_copy);
  68.                 mi_copy.addActionListener(this);
  69.                 mi_paste=new JMenuItem("貼上",ii_paste);
  70.                 mi_paste.addActionListener(this);
  71.                 mi_cut=new JMenuItem("剪下",ii_cut);
  72.                 mi_cut.addActionListener(this);
  73.                 mi_selectall=new JMenuItem("全選",ii_selectall);
  74.                 mi_selectall.addActionListener(this);
  75.                 mi_about=new JMenuItem("關於 My Editor",ii_about);
  76.         mi_about.addActionListener(this);

  77.                 mn_file=new JMenu("檔案(F)");
  78.                 mn_file.setMnemonic('F');
  79.                 mn_file.add(mi_new);
  80.                 mn_file.add(mi_open);
  81.                 mn_file.add(mi_save);
  82.                 mn_file.addSeparator();
  83.                 mn_file.add(mi_exit);

  84.                 mn_edit=new JMenu("編輯(E)");
  85.                 mn_edit.setMnemonic('E');
  86.                 mn_edit.add(mi_copy);
  87.                 mn_edit.add(mi_paste);
  88.                 mn_edit.add(mi_cut);
  89.                 mn_edit.addSeparator();
  90.                 mn_edit.add(mi_selectall);
  91.                
  92.                 mn_help=new JMenu(" 說明(H) ");
  93.         mn_help.setMnemonic('H');     
  94.         mn_help.add(mi_about);

  95.                 mb=new JMenuBar();
  96.                 mb.setBorder(new BevelBorder(BevelBorder.RAISED));
  97.                 mb.add(mn_file);
  98.                 mb.add(mn_edit);
  99.                 mb.add(mn_help);

  100.                 ta=new JTextArea();
  101.                 ta.setFont(new Font("新細明體", Font.PLAIN, 20));
  102.                 ta.setLineWrap(true);

  103.                 sp=new JScrollPane(ta);

  104.                 fm=new JFrame("My Editor");
  105.                 fm.setIconImage(ic.getImage());
  106.                 fm.setBounds(100, 100, 500, 350);
  107.                 fm.setVisible(true);
  108.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  109.                 fm.add(sp);
  110.                 fm.setJMenuBar(mb);
  111.         }
  112.         public static void main(String[] args) {
  113.                 new Ch04();

  114.         }

  115.         public void actionPerformed(ActionEvent e) {
  116.                 if(e.getSource()==mi_open)
  117.                 {
  118.                         int ret=fc.showOpenDialog(null);
  119.                         if(ret==JFileChooser.APPROVE_OPTION)
  120.                         {
  121.                                 try {
  122.                                         File fl=fc.getSelectedFile();
  123.                                         BufferedReader br=new BufferedReader(new FileReader(fl.getAbsolutePath()));
  124.                                         String str=br.readLine();
  125.                                         String tmp=br.readLine();
  126.                                         while(tmp!=null)
  127.                                         {
  128.                                                 str+="\r\n";
  129.                                                 str+=tmp;
  130.                                                 tmp=br.readLine();
  131.                                         }
  132.                                         ta.setText(str);
  133.                                         br.close();
  134.                                         fm.setTitle("My Editor - "+fl.getName());
  135.                                 } catch (Exception ex) {}
  136.                         }
  137.                 }
  138.                 if(e.getSource()==mi_save)
  139.                 {
  140.                         int ret=fc.showSaveDialog(null);
  141.                         if(ret==JFileChooser.APPROVE_OPTION)
  142.                         {
  143.                                 try {
  144.                                         File fl=fc.getSelectedFile();
  145.                                         String path="";
  146.                                         if(fl.getAbsolutePath().substring(fl.getAbsolutePath().length()-4).equals(".txt"))
  147.                                         {
  148.                                                 path=fl.getAbsolutePath();
  149.                                                 fm.setTitle("My Editor - "+fl.getName());
  150.                                         }else
  151.                                         {
  152.                                                 path=fl.getAbsolutePath()+".txt";
  153.                                                 fm.setTitle("My Editor - "+fl.getName()+".txt");
  154.                                         }
  155.                                         BufferedWriter bw=new BufferedWriter(new FileWriter(path));
  156.                                         bw.write(ta.getText().replaceAll("\n", "\r\n"));   
  157.                                         bw.flush();
  158.                                         bw.close();
  159.                                 } catch (Exception ex) {}

  160.                         }
  161.                 }
  162.                 if(e.getSource()==mi_new)
  163.                 {
  164.                         ta.setText("");
  165.                         fm.setTitle("My Editor - 未命名");
  166.                 }
  167.                 if(e.getSource()==mi_exit)
  168.                         System.exit(0);
  169.                 if(e.getSource()==mi_copy)
  170.                         ta.copy();
  171.                 if(e.getSource()==mi_paste)
  172.                         ta.paste();
  173.                 if(e.getSource()==mi_cut)
  174.                         ta.cut();
  175.                 if(e.getSource()==mi_selectall)
  176.                         ta.selectAll();
  177.                 if(e.getSource()==mi_about)
  178.         {
  179.                 String msg="本軟體由社團法人高雄市資訊培育協會青少年程式設計班學員\n林宇翔所開發,感謝您的使用!";
  180.                 JOptionPane.showMessageDialog(fm,msg,"關於 My Editor",JOptionPane.INFORMATION_MESSAGE,ii_developer);
  181.         }
  182.         }

  183. }
複製代碼

TOP

返回列表