在浏览器中将 Java 应用程序显示为 Webdemo

发布于 2025-01-11 08:14:32 字数 660 浏览 0 评论 0原文

我有一个使用 swing 和 awt 完成的、工作的 java 项目。它作为可执行 jar 工作,但我想将其上传到网络服务器上作为工作现场演示。这是主要的类,还有很多其他的类使用。我发现了 java.applet.Applet,但是如何才能最好地实现它呢?

import javax.swing.*;
import java.awt.*;

public class TicTacToe extends JFrame implements Components
{
    

    public TicTacToe()
    {
        super("TicTacToe V1");
        add(statusbar, BorderLayout.NORTH);
        add(playground, BorderLayout.CENTER);

        setDefaultCloseOperation(EXIT_ON_CLOSE);
        setSize(800,600);
        setResizable(false);
        setVisible(true);

    }

    public static void main(String[] args){
        TicTacToe tictactoe = new TicTacToe();

    }

}

I have a finished, working java project using swing and awt. It works as executable jar, but I want to upload it on a webserver to be a working live demo. This is the main class, there are many other classes used. I found out about java.applet.Applet, but how can I implement it the best way?

import javax.swing.*;
import java.awt.*;

public class TicTacToe extends JFrame implements Components
{
    

    public TicTacToe()
    {
        super("TicTacToe V1");
        add(statusbar, BorderLayout.NORTH);
        add(playground, BorderLayout.CENTER);

        setDefaultCloseOperation(EXIT_ON_CLOSE);
        setSize(800,600);
        setResizable(false);
        setVisible(true);

    }

    public static void main(String[] args){
        TicTacToe tictactoe = new TicTacToe();

    }

}

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

若水微香 2025-01-18 08:14:32

您可以考虑使用 CheerpJ: https://github.com/leaningtech/cheerpj-meta

CheerpJ允许在浏览器中运行未经修改的 Java 应用程序(甚至遗留小程序),无需任何二进制插件。对于非商业应用程序来说它是免费的。

全面披露:我是 CheerpJ 的首席开发人员,也是维护该项目的公司的 CTO。

You might consider using CheerpJ: https://github.com/leaningtech/cheerpj-meta

CheerpJ allows to run unmodified Java applications (and even legacy applets) in the browser without any binary plugins. It is free for non-commercial applications.

Full disclosure: I am lead developer of CheerpJ, and CTO of the company that maintains the project.

她说她爱他 2025-01-18 08:14:32

小程序不再起作用了。现代版本的 Java 中没有标准技术允许您执行此操作,因此它可以在所有浏览器中运行。

最好的办法是创建一个用户可以下载、解压和运行的 zip 文件。

Applets don’t work anymore. There is no standard technology in modern versions of Java that allows you to do this so it works in all browsers.

Best bet is to create a zip file that users can download, unpack and run.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文