標籤: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) {
}
}
}
}
}
記事本讀寫檔案功能的實現