关于部署小程序的问题?

发布于 2024-11-08 13:31:10 字数 84 浏览 0 评论 0原文

我正在使用Eclipse开发一个小程序模块,这需要一堆库。在Eclipse环境下运行正确。我想知道如何将此代码嵌入到html页面中,或者如何部署此小程序?

I am using Eclipse to develop an applet module, which requires a bunch of libraries. It runs correctly under the Eclipse environment. I would like to know how to embedded this code in a html page, or how to deploy this applet?

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

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

发布评论

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

评论(5

离去的眼神 2024-11-15 13:31:11

由于使最终用户正确工作涉及大量技术,我强烈建议您在继续之前了解这些东西如何良好地交互。

有关 applet 的 Java 教程部分是一个不错的起点,其中详细介绍了如何部署工作。

Due to the amount of technologies involved in making this work correctly for the end-user, I would strongly suggest that you learn how these things interact well before proceeding.

A good place to start is the Java Tutorial section on applets which details how deployment work.

☆獨立☆ 2024-11-15 13:31:11

以下是一些选项:

Here are some options:

谁把谁当真 2024-11-15 13:31:11

有很多解决方案,根据您现有的网络基础设施,您可能会发现其中一种优于另一种。

通常,在网页中,您可以将标签()添加到您希望的文档中要插入的小程序,选项卡的内容引用 Web 浏览器随后下载的 JAR 文件。

There are a number of solutions, and depending on your existing web infrastructure, you might find one superior to another.

Generally, in the web page, you add tags (either <applet ...> or <object ...>) to the document where you wish the applet to be inserted, and the contents of the tab reference the JAR file which the web browser will then download.

久光 2024-11-15 13:31:11

..小程序模块,需要一堆库。

applet 元素的 archive 属性中添加对每个库 Jar 的引用。

.. applet module, which requires a bunch of libraries.

Add a reference to each library Jar in the archive attribute of the applet element.

又爬满兰若 2024-11-15 13:31:10

对于代码片段,类似这样的内容将在 html 页面中运行以运行您的小程序:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <title></title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  </head>
  <body>
      <applet height="90%" width="90%" archive="myJavaClasses.jar" code="my/java/applet.class" />
  </body>
</html>

For a code snippet, something like this will work within an html page to run your applet:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <title></title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  </head>
  <body>
      <applet height="90%" width="90%" archive="myJavaClasses.jar" code="my/java/applet.class" />
  </body>
</html>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文