{ 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);
时间: 2024-04-18 10:31:07 浏览: 100
这段代码创建了一个包含 "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" 按钮的面板,并在点击按钮时执行删除指定内容的操作。
阅读全文