将 java applet 代码转换为 java 脚本
有什么方法可以将java applet代码转换为java脚本吗?
Is any way to convert a java applet code to java script?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有什么方法可以将java applet代码转换为java脚本吗?
Is any way to convert a java applet code to java script?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(5)
不完全是,不。它们是不同的语言,具有不同的库。
如果您想使用 Java 进行客户端 Web 开发,请查看 GWT
Not really, no. They're different languages with different libraries.
If you want to develop for the client-side Web with Java, have a look at GWT
我认为没有一个好的方法可以做到这一点。请记住:Java 和 JavaScript 是两种完全不同的技术。不要把它们搞混了。
I don't think there is a good way to do so. Please remember: Java and JavaScript are two entirely different technologies. Don't mix them up.
据我所知,不是直接且不费力气的。然而,人们已经将许多东西移植到 HTML/JS,例如 GWT 上的 Quake 2。因此,您可以投入一些时间并深入研究代码并使用 GWT 进行移植。
使用 GWT 的优势在于您的小程序采用 Java 语言,这与您用于 GWT 的语言相同。以下是您可以在代码中使用的内容的列表:GWT JRE 仿真
Not directly and without effort as far as I know. However people have ported many things to HTML/JS, like Quake 2 on GWT. So you could invest some time and step into the code and port it with GWT.
Advantages of going with GWT arise from the fact that your applet is in Java language, which is the same language you use for GWT. Here is a list of what you can use in your code: GWT JRE Emulation
不。
Google Web Toolkit (GWT) 可能是您所需要的。我推荐一本书GWT In Practice 2008
No.
Google Web Toolkit (GWT) is what you might need. I recommend book GWT In Practice 2008
12 年后,现在有一个名为“JSweet”的工具,声称可以做到这一点:将 Java 代码转换为 JavaScript:https: //www.jsweet.org/
还有一篇 2019 年的博客文章,有人使用 JSweet 将一些 Java Applet 转换为 JavaScript:https://www.lprp.fr/2019/08/jsweet-convert-applets-to-javascript/
12 years later there is now a tool called "JSweet" which claims to do exactly that: converting Java code to JavaScript: https://www.jsweet.org/
There is also a blog post from 2019 of someone using JSweet to convert some Java Applets to JavaScript: https://www.lprp.fr/2019/08/jsweet-convert-applets-to-javascript/