JAVA小程序转换为Web应用程序

发布于 2024-09-09 23:33:18 字数 73 浏览 0 评论 0原文

我有一个可以玩刽子手的小程序。现在我想用这个游戏代码创建网络应用程序。执行此操作的最简单方法是什么?哪些工具或平台最适合此解决方案?

I have a applet witch enables to play Hangman. Now i want to create web application with this game code. What is the easiest way to perform this action and what tools or platforms is best for this solution?

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

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

发布评论

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

评论(1

似狗非友 2024-09-16 23:33:18

如果 Applet 代码写得很好,那么您应该已经将模型、视图和控制器与业务代码(“AI”)分开了。要转换为 Web 应用程序(我假设您仍在 Java 上下文中讨论,因此目标是 JSP/Servlet?),您基本上只需要将 Applet 控制器替换为基于 Servlet 的控制器,并将基于 Swing/AWT 的视图替换为基于 JSP (HTML/CSS/JS) 的一种。


根据评论,您似乎对网络开发完全陌生。我建议您通过以下链接:

If the Applet code is well written you should already have a separation in Model, View and Controller and the business code (the "AI"). To convert to a webapplication (I assume you're still talking in Java context and thus are targeting on JSP/Servlet?), you basically only need to replace the Applet Controller by a Servlet based one and the Swing/AWT based View by a JSP (HTML/CSS/JS) based one.


As per the comments it look like you're completely new to web development. I suggest you to get yourself through the following links:

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