要實現swing跳轉到另一個界面,可以使用以下步驟:
以下是一個簡單的示例代碼:
import javax.swing.*;
public class MainFrame extends JFrame {
private JButton button;
public MainFrame() {
setTitle("主界面");
setSize(300, 200);
setLocationRelativeTo(null);
button = new JButton("跳轉");
button.addActionListener(e -> jumpToAnotherFrame());
JPanel panel = new JPanel();
panel.add(button);
add(panel);
}
private void jumpToAnotherFrame() {
AnotherFrame anotherFrame = new AnotherFrame();
setVisible(false);
anotherFrame.setVisible(true);
dispose(); // 釋放當前界面資源,如果不需要再回到當前界面可以調用dispose()方法
}
public static void main(String[] args) {
SwingUtilities.invokeLater(() -> {
MainFrame mainFrame = new MainFrame();
mainFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
mainFrame.setVisible(true);
});
}
}
import javax.swing.*;
public class AnotherFrame extends JFrame {
public AnotherFrame() {
setTitle("另一個界面");
setSize(300, 200);
setLocationRelativeTo(null);
}
}
在上面的示例中,點擊主界面上的按鈕會隱藏主界面,并顯示另一個界面。另一個界面的代碼和主界面類似,只是界面上的內容可以根據需求進行調整。