gpt4 book ai didi

java - 您如何将具有多个类的 Java 应用程序转换为一个 applet,每个类都有自己的框架

转载 作者:行者123 更新时间:2023-11-29 03:51:01 26 4
gpt4 key购买 nike

我有一个包含多个类的 Java 应用程序,每个类都有自己的框架。如果我想去另一个类(class),我会关闭或隐藏当前类(class)框架并启动新类(class)框架。如果我想回到旧类(class),我会关闭新类(class)框架并启动或使旧类(class)框架可见,我将如何在小程序中执行此操作?

我的主要类(class)的一部分

private static void createAndShowGUI() {

//Create and set up the window.
JFrame frame = new JFrame("MDCAP");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLocationRelativeTo(null);

//Set up the content pane.
addComponentsToPane(frame, frame.getContentPane());

//position the frame in the center
frame.setSize(350, 500);
frame.setLocationRelativeTo(null);
frame.setResizable(false);
frame.setVisible(true);

在我的主课上,如果我想去别的课

        //close the frame and run contractInfromation
button4.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent arg0) {
frame.setVisible(false);
frame.dispose();
contractInformation.main(null);
}
});

最佳答案

我想我会把它转换成 Webstart .可能更容易 - 可能无需更改代码!

关于java - 您如何将具有多个类的 Java 应用程序转换为一个 applet,每个类都有自己的框架,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8793511/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com