inputFile.delete(); tempFile.renameTo(inputFile); boolean successful = tempFile.renameTo(inputFile); if(count==0){ JOptionPane.showMessageDialog(null, "未找到呜呜呜","TIPS",JOptionPane.WARNING_MESSAGE); }else{ dispose(); } } catch(IOException e1) { e1.printStackTrace(); } } }); okButton.setActionCommand("OK"); buttonPane.add(okButton); getRootPane().setDefaultButton(okButton); } } setVisible(true); } }
时间: 2024-04-18 07:30:00 浏览: 92
在这段代码中,`inputFile.delete()` 是用于删除原始文件的操作。它会删除名为 "chufang.txt" 的文件。
`tempFile.renameTo(inputFile)` 是用于将临时文件重命名为原始文件的操作。它将临时文件 "Tempchufang.txt" 重命名为 "chufang.txt"。
`boolean successful = tempFile.renameTo(inputFile)` 是将重命名操作的结果保存在 `successful` 变量中。
接下来,根据之前的条件判断,如果没有找到匹配的行(count为0),则显示一个消息对话框提示未找到。否则,调用 `dispose()` 方法关闭对话框窗口。
最后,代码设置对话框窗口可见。
这段代码可能是在修改数据后,进行文件操作的收尾工作,并根据结果显示相应的消息提示或关闭对话框窗口。
相关问题
{ JPanel buttonPane = new JPanel(); buttonPane.setLayout(new FlowLayout(FlowLayout.RIGHT)); getContentPane().add(buttonPane, BorderLayout.SOUTH); { JButton okButton = new JButton("OK"); okButton.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { if (!textField.getText().equals("")){ try{ String[] a={}; int count=0; File inputFile = new File("chufang.txt"); File tempFile = new File("Tempchufang.txt"); BufferedReader reader = new BufferedReader(new FileReader(inputFile)); BufferedWriter writer = new BufferedWriter(new FileWriter(tempFile)); String currentLine; while((currentLine = reader.readLine()) != null) { a= currentLine.split(" "); String[] arr = currentLine.split("\\s+"); if(arr.length >= 1 && arr[0].equals(textField.getText())) { count=1; continue; } writer.write(currentLine + System.getProperty("line.separator")); } writer.close(); reader.close(); inputFile.delete(); tempFile.renameTo(inputFile); boolean successful = tempFile.renameTo(inputFile); } catch(IOException e1) { e1.printStackTrace(); } } dispose(); } }); okButton.setActionCommand("OK"); buttonPane.add(okButton); getRootPane().setDefaultButton(okButton); } } setVisible(true);
这段代码创建了一个包含 "OK" 按钮的面板,并将其添加到容器的南部(SOUTH)位置。首先,通过 `new JPanel()` 创建了一个新的 JPanel 对象,并将其赋值给变量 buttonPane。然后,通过 `buttonPane.setLayout(new FlowLayout(FlowLayout.RIGHT))` 设置 buttonPane 的布局管理器为 FlowLayout,并将按钮靠右对齐。
接下来,通过 `getContentPane().add(buttonPane, BorderLayout.SOUTH)` 将 buttonPane 添加到内容面板中,并指定其在 BorderLayout 的南部位置。
然后,创建了一个名为 okButton 的 JButton 对象,并将其文本设置为 "OK"。通过 `okButton.addActionListener(new ActionListener())` 为按钮添加了一个动作监听器,用于处理按钮的点击事件。
在按钮的点击事件处理程序中,首先判断文本框中的内容不为空。如果不为空,则执行以下操作:
1. 创建一个空数组 `String[] a={};` 和一个计数变量 `int count=0;`。
2. 创建一个 File 对象来表示输入文件和临时文件。
3. 使用 BufferedReader 和 BufferedWriter 分别创建读取和写入文件的对象。
4. 循环读取输入文件的每一行,使用空格分割每一行的内容为数组 `arr`。
5. 如果数组 `arr` 的长度大于等于 1 并且第一个元素与文本框中的内容相等,则将计数变量设置为 1 并继续下一次循环。
6. 否则,将当前行写入临时文件。
7. 关闭写入和读取文件的对象。
8. 删除输入文件。
9. 将临时文件重命名为输入文件,完成删除指定内容的操作。
最后,通过 `setVisible(true)` 显示窗口。
这段代码的作用是创建一个带有 "OK" 按钮的面板,并在点击按钮时执行删除指定内容的操作。
JPanel buttonPane = new JPanel(); buttonPane.setLayout(new FlowLayout(FlowLayout.RIGHT)); getContentPane().add(buttonPane, BorderLayout.SOUTH); { JButton okButton = new JButton("修改"); okButton.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { try{ String[] a={}; int count=0; File inputFile = new File("chufang.txt"); File tempFile = new File("Tempchufang.txt"); BufferedReader reader = new BufferedReader(new FileReader(inputFile)); BufferedWriter writer = new BufferedWriter(new FileWriter(tempFile)); String currentLine; while((currentLine = reader.readLine()) != null) { a= currentLine.split(" "); String[] arr = currentLine.split("\\s+"); if(arr.length >= 1 && arr[0].equals(textField_1.getText())) { count=1; arr[0]=(String) textField_1.getText(); /* arr[1]=(String) textField_2.getText(); arr[2]=(String) textField_3.getText(); arr[3]=(String) textField_4.getText();*/ arr[4]=(String) textField_5.getText(); for(int i =0; i<arr.length; i++){ writer.write(arr[i]); // 向文件中写入数据 writer.write(' '); // 空格分隔 } writer.write('\n'); JOptionPane.showMessageDialog(null, "更改成功!","TIPS",JOptionPane.WARNING_MESSAGE); continue; } writer.write(currentLine + System.getProperty("line.separator")); } writer.close(); reader.close(); inputFile.delete(); tempFile.renameTo(inputFile); boolean successful = tempFile.renameTo(inputFile); if(count==0){ JOptionPane.showMessageDialog(null, "未找到呜呜呜","TIPS",JOptionPane.WARNING_MESSAGE); }else{ dispose(); } } catch(IOException e1) { e1.printStackTrace(); } } }); okButton.setActionCommand("OK"); buttonPane.add(okButton); getRootPane().setDefaultButton(okButton); } } setVisible(true); } }
这段代码创建了一个名为 `buttonPane` 的 `JPanel` 对象,并设置其布局为右对齐的流式布局。
然后,将 `buttonPane` 添加到对话框的南部位置(底部)。
接下来,代码创建了一个名为 `okButton` 的 `JButton` 对象,按钮文本为 "修改"。
通过添加一个动作监听器 `ActionListener`,当用户点击该按钮时,会执行相应的操作。
在按钮的动作监听器内部,首先读取名为 "chufang.txt" 的文件,并创建一个临时文件 "Tempchufang.txt"。
然后,通过缓冲读取器 `BufferedReader` 和缓冲写入器 `BufferedWriter` 逐行读取原文件,并将修改后的数据写入临时文件。
在读取每行数据时,根据条件判断是否需要进行修改。如果找到了匹配的行(使用 `textField_1` 的文本作为匹配条件),则进行修改操作。
修改后的数据被写入临时文件,并显示一个消息对话框提示操作成功。
最后,关闭输入和输出流,删除原文件,并将临时文件重命名为原文件,完成修改操作。
如果没有找到匹配的行,显示一个消息对话框提示未找到。
最后,设置对话框可见。
这段代码可能是在实现对数据文件进行修改的功能,并在界面上提供了一个 "修改" 按钮来触发相应的操作。
阅读全文