private JButton getOpenButton() { if (openButton == null) { openButton = new JButton(); openButton.setText("写入文件"); // 修改按钮的提示信息openButton.addActionListener(new java.awt.event.ActionListener() { // 按钮的单击事件public void actionPerformed(ActionEvent e) { // 创建文件对象File file = new File("word.txt"); try { // 创建FileWriter对象FileWriter out = new FileWriter(file); // 获取文本域中文本String s = jTextArea.getText(); out.write(s); // 将信息写入磁盘文件out.close(); // 将流关闭 } catch (Exception e1) { e1.printStackTrace(); } } } ); } return openButton; } private JButton getCloseButton() { if (closeButton == null) { closeButton = new JButton(); closeButton.setText("读取文件"); // 修改按钮的提示信息closeButton.addActionListener(new java.awt.event.ActionListener() { // 按钮的单击事件public void actionPerformed(ActionEvent e) { File file = new File("word.txt"); // 创建文件对象try { // 创建FileReader对象FileReader in = new FileReader(file); char byt[] = new char[1024]; // 创建char型数组int len = in.read(byt); // 将字节读入数组// 设置文本域的显示信息jTextArea.setText(new String(byt, 0, len)); in.close(); // 关闭流 } catch (Exception e1) { e1.printStackTrace(); } } } ); } return closeButton; }
如上程式段,剛開始我都認為兩個按鍵都重新創建了woed.txt文件,那麼不是覆蓋了嗎?
其實不是的,File類別創建word.txt檔案並不是真的創建,真要創建,要用file.creatNewfile()才行,實際上兩個地方都new File("word.txt"),只是在磁碟內暫時建立了快取而已。
而且因為第一個按鍵已經建立了,第二個就直接用它(名稱一樣)。
#以上是關於Java裡面File類別建立txt檔案重複如何解決的詳細內容。更多資訊請關注PHP中文網其他相關文章!