java设计一个按钮组件每点一次就向info.txt存入一句话“hello”
时间: 2024-01-28 20:04:34 浏览: 57
好的,以下是一个简单的Java按钮组件代码,点击按钮后会向info.txt文件中写入一句话"hello":
```java
import java.awt.*;
import java.awt.event.*;
import java.io.*;
import javax.swing.*;
public class HelloButton extends JFrame {
private static final long serialVersionUID = 1L;
private JButton button;
public HelloButton() {
super("Hello Button");
button = new JButton("Click me!");
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
try {
FileWriter writer = new FileWriter("info.txt", true);
writer.write("hello\n");
writer.close();
} catch (IOException ex) {
ex.printStackTrace();
}
}
});
getContentPane().add(button, BorderLayout.CENTER);
setSize(200, 100);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setVisible(true);
}
public static void main(String[] args) {
new HelloButton();
}
}
```
当您运行程序并点击按钮时,它将在info.txt文件中添加一行文本“hello”。请注意,这将在当前工作目录下创建一个名为“info.txt”的文件。如果该文件已经存在,则将在该文件中追加文本。
阅读全文