如何将用Netbeans编写的applet放入html文件中?
我写了一个连接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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
阅读 Sun/Oracle 的本教程
Read this tutorial from Sun/Oracle
让主类扩展 JApplet
构建项目
找到 jar
然后将此代码添加到您的 HTML
Make the main class extends JApplet
Build the project
Find the jar
Then add this code to your HTML
如果您在 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.