Java - Applet 调用/调用另一个 Applet

发布于 2024-12-19 07:50:57 字数 900 浏览 0 评论 0原文

我之前写过有关以下问题的文章,并收到了使用 Splash Screen 或 JDialog 的答案。当我研究上述两个解决方案时,现在我认为我可以通过使用另一个小程序来解决我的问题。

问题:在我的主小程序 GUI 运行之前,我需要将某些文件下载到本地 PC 才能使 GUI 正常工作。因此,我现在正在考虑有 2 个小程序,其中 Applet1 下载文件,Applet2 是主要的 GUI。

我会使用 Splash Screen 或 JDialog,但目前它们似乎不是我所需要的。如何在同一窗口中自动从 Applet1 调用 Applet2,并在 Applet1 下载完文件后完全关闭 Applet1? Applet 创意是否比 Splash Screen 或 JDialog 更好地解决我的问题?

这是我的主小程序的代码(在本例中为 Applet2):

@Override
public void init() {

    /* Create and display the Applet2 once Applet1 is done */
    try {
        java.awt.EventQueue.invokeAndWait(new Runnable() {

            @Override
            public void run() {
                initComponents();//Draw the GUI 
            }
        });

    } catch (Exception ex) {}
}

我之前的帖子: Java - 暂停 initComponents 运行?

I wrote earlier about the following problem and received an answer to use either Splash Screen or JDialog. As I was researching about the above 2 solutions, now I think that I might be able to solve my problem by using another applet.

The problem: Before my main applet GUI runs I need to download certain files to local PC for the GUI to work. Therefore, I am now thinking of having 2 applets where Applet1 downloads the files, Applet2 is the main GUI.

I would use the Splash Screen or JDialog but at the moment they don't seem to be what I need. How can I invoke Applet2 from Applet1 automatically in the same window, and fully close Applet1 once Applet1 is done downloading files? Is the Applet idea better solution for my problem than Splash Screen or JDialog?

Here is the code of my main applet (in this case it would be Applet2):

@Override
public void init() {

    /* Create and display the Applet2 once Applet1 is done */
    try {
        java.awt.EventQueue.invokeAndWait(new Runnable() {

            @Override
            public void run() {
                initComponents();//Draw the GUI 
            }
        });

    } catch (Exception ex) {}
}

My earilier post:
Java - Pause initComponents from running?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文