記事本讀寫檔案功能的實現

來源:互聯網
上載者:User

標籤:java   物件導向   io流   

public class Notepad extends JFrame implements ActionListener{


//定義需要的組件
JTextArea jta = null;
//菜單條
JMenuBar jmb = null;
//第一JMenu
JMenu jm1 = null;
//定義JMenuItem
JMenuItem jmi1 = null;
JMenuItem jmi2 = null;

public static void main(String[] args) {
Notepad np = new Notepad();
}

//建構函式
public Notepad(){
//建立jta
jta = new JTextArea();
jmb = new JMenuBar();
jm1 = new JMenu("檔案");
//設定助記符
jm1.setMnemonic(‘F‘);
jmi1 = new JMenuItem("開啟");
//註冊監聽
jmi1.addActionListener(this);
jmi1.setActionCommand("open");
jmi2 = new JMenuItem("儲存");

//對儲存菜單處理
jmi2.addActionListener(this);
jmi2.setActionCommand("save");

//加入
this.setJMenuBar(jmb);
//把jm1放入jmb
jmb.add(jm1);
//把item放入Menu
jm1.add(jmi1);
jm1.add(jmi2);
//放入到JFrame
this.add(jta);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setSize(400,300);
this.setVisible(true);
}


@Override
public void actionPerformed(ActionEvent e) {
// 判斷時哪個菜單被選中
if (e.getActionCommand().equals("open")) {
//System.out.println("open");

//重要組件:JFileChooser
//檔案選擇組件
JFileChooser jfc1 = new JFileChooser();
//設定名字
jfc1.setDialogTitle("請選擇檔案......");
//預設
jfc1.showOpenDialog(null);
//顯示
jfc1.setVisible(true);

//得到使用者選擇檔案的全路徑
String filename = jfc1.getSelectedFile().getAbsolutePath();
//System.out.println(filename);
FileReader fr = null;
BufferedReader br = null;
try {
fr = new FileReader(filename);
br = new BufferedReader(fr);

//從檔案中讀取資訊並顯示到jta
String s = "";
String allContent = "";
while ((s = br.readLine())!=null) {
//System.out.println(s);  //將檔案內容輸出到控制台
//輸出到磁碟
allContent+=s+"\r\n";
}
//放置大jta即可
jta.setText(allContent);

} catch (Exception e1) {
}finally{
try {
br.close();
fr.close();
} catch (Exception e1) {
e1.printStackTrace();
}
    }
}else if (e.getActionCommand().equals("save")) {
//出現儲存對話方塊
JFileChooser jfc = new JFileChooser();
jfc.setDialogTitle("另存新檔......");
//按預設的方式顯示
jfc.showSaveDialog(null);
jfc.setVisible(true);

//得到使用者希望把檔案儲存到何處--檔案全路徑
String file = jfc.getSelectedFile().getAbsolutePath();

//準備寫入到指定檔案
FileWriter fw = null;
BufferedWriter bw = null;
try {
fw = new FileWriter(file);
bw = new BufferedWriter(fw);
//自己可以進行最佳化
bw.write(this.jta.getText());
} catch (Exception e2) {
e2.printStackTrace();
}finally{
try {
bw.close();
fw.close();
} catch (Exception e3) {
 }
      }
    }
  }
}

記事本讀寫檔案功能的實現

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.