在java文件中加入窗口代码
时间: 2024-03-05 17:50:02 浏览: 60
好的,以下是一个简单的Java窗口代码:
```java
import javax.swing.JFrame;
public class MyWindow extends JFrame {
public MyWindow() {
setTitle("My Window");
setSize(500, 500);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setVisible(true);
}
public static void main(String[] args) {
new MyWindow();
}
}
```
这个代码创建了一个名为"My Window"的窗口,大小为500x500像素,并且在关闭窗口时退出程序。你可以在`main`方法中创建一个`MyWindow`对象来显示窗口。
相关问题
我在使用java swing写一个文件保存窗口,请问如何实现在文本输入框里面加入按钮,使用户点击按钮的时候能打开文件选择器,选择好文件后会将路径显示到文本框中
您可以使用JFileChooser组件来实现此功能。首先,创建一个文本输入框和一个按钮,然后将它们添加到您的窗口上。
接下来,您需要为按钮添加一个ActionListener。在ActionListener中,创建一个JFileChooser并打开文件选择器,让用户选择要保存的文件。一旦用户选择了文件,您可以使用JFileChooser.getSelectedFile()方法获取选择的文件,并将其路径显示在文本输入框中。
下面是一个示例代码:
```
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class FileSaveDialog extends JFrame {
private JTextField filePathField;
public FileSaveDialog() {
super("文件保存窗口");
setDefaultCloseOperation(DISPOSE_ON_CLOSE);
// 创建文本输入框和按钮
filePathField = new JTextField(20);
JButton selectFileBtn = new JButton("选择文件");
// 为按钮添加ActionListener
selectFileBtn.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
// 创建文件选择器
JFileChooser fileChooser = new JFileChooser();
fileChooser.setFileSelectionMode(JFileChooser.FILES_ONLY);
int result = fileChooser.showSaveDialog(FileSaveDialog.this);
// 处理用户选择的文件
if (result == JFileChooser.APPROVE_OPTION) {
String filePath = fileChooser.getSelectedFile().getAbsolutePath();
filePathField.setText(filePath);
}
}
});
// 将文本输入框和按钮添加到窗口中
JPanel panel = new JPanel(new FlowLayout());
panel.add(filePathField);
panel.add(selectFileBtn);
getContentPane().add(panel);
pack();
setLocationRelativeTo(null);
}
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
new FileSaveDialog().setVisible(true);
}
});
}
}
```
阅读全文