如何将用Netbeans编写的applet放入html文件中?

发布于 2024-09-11 02:26:59 字数 163 浏览 5 评论 0原文

我写了一个连接mysql的小程序。由于我连接 mysql,它使用了额外的库。(MySQL 的 JDBC 驱动程序(Connector/J))当我完成编写并尝试在 Netbeans 上运行时,没有问题,但我不知道如何将该类放入 html 文件中。我是否必须将整个 Netbeans 项目放在一起,或者我应该做什么?

I have written an applet that connects mysql. Since i connect mysql it uses additional library.(JDBC Driver for MySQL (Connector/J)) When i finished writing and try to run on Netbeans there is no problem but i did not figure how to put that class into a html file. Do i have to put whole netbeans project up or what should i do?

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

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

发布评论

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

评论(3

不顾 2024-09-18 02:26:59

阅读 Sun/Oracle 的本教程

  1. 打包为jar
  2. 创建jnlp
  3. 创建HTML

Read this tutorial from Sun/Oracle

  1. Package as jar
  2. Create jnlp
  3. Create HTML
超可爱的懒熊 2024-09-18 02:26:59

让主类扩展 JApplet

构建项目

找到 jar

然后将此代码添加到您的 HTML

<applet code = '<appletClassName>' 
    archive = '<jarFilePath.jar>', 
    width = xxx, 
    height = yyy />

Make the main class extends JApplet

Build the project

Find the jar

Then add this code to your HTML

<applet code = '<appletClassName>' 
    archive = '<jarFilePath.jar>', 
    width = xxx, 
    height = yyy />
情绪操控生活 2024-09-18 02:26:59

如果您在 Netbeans 项目属性中设置了 JDBC 驱动程序,那么您所要做的就是构建项目,然后进入 NetbeansProjects 文件夹(无论项目文件夹位于何处)并打开构建文件夹。它应该有一个示例 HTML 文档以及运行该小程序所需的文件。

If you have the JDBC driver set up in the Netbeans project properties, all you have to do is build the project and then go into your NetbeansProjects folder (wherever your Project folder is) and open up the build folder. It should have a sample HTML document along with the necessary files to run the applet.

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