java實(shí)驗(yàn)報(bào)告-記事本的編寫.doc_第1頁(yè)
java實(shí)驗(yàn)報(bào)告-記事本的編寫.doc_第2頁(yè)
java實(shí)驗(yàn)報(bào)告-記事本的編寫.doc_第3頁(yè)
java實(shí)驗(yàn)報(bào)告-記事本的編寫.doc_第4頁(yè)
java實(shí)驗(yàn)報(bào)告-記事本的編寫.doc_第5頁(yè)
已閱讀5頁(yè),還剩4頁(yè)未讀, 繼續(xù)免費(fèi)閱讀

下載本文檔

版權(quán)說(shuō)明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)

文檔簡(jiǎn)介

Java 程序設(shè)計(jì)實(shí)驗(yàn)報(bào)告一、實(shí)驗(yàn)內(nèi)容編寫一個(gè)記事本程序完成新建,打卡,保存功能,主要目的是熟悉輸入輸出流操作,特別是文件的輸入輸出流操作,其次是熟悉界面的設(shè)計(jì)編程操作。二、實(shí)驗(yàn)過(guò)程1.實(shí)驗(yàn)設(shè)計(jì):實(shí)驗(yàn)流程圖如圖所示這次實(shí)驗(yàn)主要用到了字符流的操作;主要是先把界面設(shè)計(jì)好,再編寫各部分代碼,主要功能編寫過(guò)程如下:新建:新建的代碼就是將文本域設(shè)為可寫打開(kāi):打開(kāi)操作主要是利用定義的文件字符流對(duì)象進(jìn)行讀取操作,自定義了一個(gè)方法read()進(jìn)行讀取操作保存:保存操作主要是將文本域的類容存到一個(gè)字符串中,并將字符串轉(zhuǎn)換為字符數(shù)組利用文件字符輸出流操作進(jìn)行寫入文件并保存。退出:退出操作主要是看是否有文件未保存,有則提示是否保存,并退出,無(wú)則直接退出三、實(shí)驗(yàn)結(jié)果四、討論與分析這次實(shí)驗(yàn)過(guò)程我感覺(jué)到有點(diǎn)難度,主要是開(kāi)始時(shí)沒(méi)弄清楚字節(jié)流和字符流,造成了讀取中和保存中的亂碼,最終解決了,還有一個(gè)問(wèn)題就是用寫的notebook保存的文件在windows記事本中打開(kāi)顯示不正常,而在notebook中顯示正常,我不清楚這原因,總的來(lái)說(shuō),讓我學(xué)會(huì)了流的基本操作,收獲還可以。五、附錄:關(guān)鍵代碼(給出適當(dāng)注釋,可讀性高)package notebook;import java.io.BufferedOutputStream;import java.io.BufferedReader;import java.io.BufferedWriter;import java.io.File;import java.io.FileInputStream;import java.io.FileNotFoundException;import java.io.FileOutputStream;import java.io.FileReader;import java.io.FileWriter;import java.io.IOException;import java.io.InputStreamReader;import javax.swing.JFileChooser;import javax.swing.JOptionPane;public class Notebook extends javax.swing.JFrame /* Creates new form Notebook */ 自定義File curFile = null;FileReader filein;/ 字符輸入流對(duì)象fileinFileWriter fileout;/ 字符輸出流對(duì)象fileoutBoolean Open = false;/ 文件打開(kāi)標(biāo)志public Notebook() initComponents();/GEN-BEGIN:initComponents/ private void initComponents() jMenuBar1 = new javax.swing.JMenuBar();jMenu1 = new javax.swing.JMenu();jMenu2 = new javax.swing.JMenu();jScrollPane1 = new javax.swing.JScrollPane();EditArea = new javax.swing.JTextArea();menuBar = new javax.swing.JMenuBar();fileMenu = new javax.swing.JMenu();newMenuItem1 = new javax.swing.JMenuItem();openMenuItem = new javax.swing.JMenuItem();saveMenuItem = new javax.swing.JMenuItem();exitMenuItem = new javax.swing.JMenuItem();jMenu1.setText(File);jMenuBar1.add(jMenu1);jMenu2.setText(Edit);jMenuBar1.add(jMenu2);setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);EditArea.setColumns(20);EditArea.setEditable(false);EditArea.setRows(5);jScrollPane1.setViewportView(EditArea);fileMenu.setText(u6587u4ef6);newMenuItem1.setText(u65b0u5efa);newMenuItem1.addActionListener(new java.awt.event.ActionListener() public void actionPerformed(java.awt.event.ActionEvent evt) newMenuItem1ActionPerformed(evt););fileMenu.add(newMenuItem1);openMenuItem.setText(u6253u5f00);openMenuItem.addActionListener(new java.awt.event.ActionListener() public void actionPerformed(java.awt.event.ActionEvent evt) try openMenuItemActionPerformed(evt); catch (IOException e) / TODO Auto-generated catch blocke.printStackTrace(););fileMenu.add(openMenuItem);saveMenuItem.setText(u4fddu5b58);saveMenuItem.addActionListener(new java.awt.event.ActionListener() public void actionPerformed(java.awt.event.ActionEvent evt) saveMenuItemActionPerformed(evt););fileMenu.add(saveMenuItem);exitMenuItem.setText(u9000u51fa);exitMenuItem.addActionListener(new java.awt.event.ActionListener() public void actionPerformed(java.awt.event.ActionEvent evt) exitMenuItemActionPerformed(evt););fileMenu.add(exitMenuItem);menuBar.add(fileMenu);setJMenuBar(menuBar);javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane();getContentPane().setLayout(layout);layout.setHorizontalGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING).addComponent(jScrollPane1, javax.swing.GroupLayout.Alignment.TRAILING,javax.swing.GroupLayout.DEFAULT_SIZE, 505, Short.MAX_VALUE);layout.setVerticalGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING).addComponent(jScrollPane1, javax.swing.GroupLayout.Alignment.TRAILING,javax.swing.GroupLayout.DEFAULT_SIZE, 279, Short.MAX_VALUE);pack();/ /GEN-END:initComponentsprivate void saveMenuItemActionPerformed(java.awt.event.ActionEvent evt) JFileChooser jfc = new JFileChooser();try jfc.showSaveDialog(this);/ 顯示保存文件選擇窗體curFile = jfc.getSelectedFile();/ 得到文件路徑save();Open=false; catch (IOException e) / TODO Auto-generated catch blocke.printStackTrace();private void read() throws IOException / 文件讀取函數(shù)filein = new FileReader(curFile);BufferedReader in=new BufferedReader(filein);/緩存讀取String s;while(s=in.readLine()!=null)EditArea.append(s+n);in.close();private void save() throws IOException /文件保存函數(shù)int i = 0;fileout = new FileWriter(curFile);String s = EditArea.getText();char a = s.toCharArray();/將字符串轉(zhuǎn)化為字符數(shù)組while (i s.length() fileout.write(ai);i+;fileout.close();private void openMenuItemActionPerformed(java.awt.event.ActionEvent evt)/文件打開(kāi)throws IOException JFileChooser jfc = new JFileChooser();if (Open = false) /沒(méi)有文件打開(kāi),顯示打開(kāi)窗體jfc.showOpenDialog(this);/ 顯示打開(kāi)文件選擇窗體curFile = jfc.getSelectedFile();/ 得到選擇的文件Open = true;EditArea.setEditable(true);try read(); catch (FileNotFoundException e) / TODO Auto-generated catch blocke.printStackTrace(); else /已打開(kāi)有文件,提示是否保存或取消打開(kāi)int ret = JOptionPane.showOptionDialog(null, 已經(jīng)打開(kāi)的文件尚未保存,需要保存嗎?,提示, JOptionPane.YES_NO_CANCEL_OPTION,JOptionPane.WARNING_MESSAGE, null, null, null);if (ret = 0) jfc.showSaveDialog(this);/ 顯示保存文件選擇窗體curFile = jfc.getSelectedFile();save(); else if (ret = 1) EditArea.setText(null);jfc.showOpenDialog(this);/ 顯示打開(kāi)文件選擇窗體curFile = jfc.getSelectedFile();/ 得到選擇的文件Open = true;try read(); catch (FileNotFoundException e) / TODO Auto-generated catch blocke.printStackTrace();private void newMenuItem1ActionPerformed(java.awt.event.ActionEvent evt) /新建EditArea.setEditable(true);Open = true;private void exitMenuItemActionPerformed(java.awt.event.ActionEvent evt) / GEN-FIRST:event_exitMenuItemActionPerformedJFileChooser jfc = new JFileChooser();if (Open = true) /有文件打開(kāi),提示是否保存或取消退出int ret = JOptionPane.showOptionDialog(null, 已經(jīng)打開(kāi)的文件尚未保存,需要保存嗎?,提示, JOptionPane.YES_NO_CANCEL_OPTION,JOptionPane.WARNING_MESSAGE, null, null, null);if (ret = 0) jfc.showSaveDialog(this);/ 顯示保存文件選擇窗體curFile = jfc.getSelectedFile();try save(); catch (IOException e) / TODO Auto-generated catch blocke.printStackTrace(); else if (ret = 1) System.exit(0);else/沒(méi)有則直接退出System.exit(0);/ GEN-LAST:event_exitMenuItemActionPerformed/* * param args * the command line arguments */public static void ma

溫馨提示

  • 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。

評(píng)論

0/150

提交評(píng)論