在浏览器中将 Java 应用程序显示为 Webdemo
我有一个使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以考虑使用 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.
小程序不再起作用了。现代版本的 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.