我的小程序无法在浏览器中运行

发布于 2024-12-10 09:44:02 字数 238 浏览 3 评论 0原文

谁能帮我一下。我编写了一个程序来控制想象中的房子中的供暖系统,实际上是一个小程序。 但我无法让它在浏览器中作为小程序运行,任何人都可以帮我吗,我链接到我所有代码的 zip 文件夹...

它在 netbeans 中运行良好, dropbox.com/u/47863/Heating%20System.zip" rel="nofollow">http://dl.dropbox.com/u/47863/Heating%20System.zip

Can anyone help me out. I've written a program that controls the heating system in an imaginery house, an applet actually. it runs fine in netbeans but i cant get it to run as an applet in a browser, can anyone help me out please, I linked to a zip folder of all my code...

http://dl.dropbox.com/u/47863/Heating%20System.zip

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

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

发布评论

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

评论(2

寂寞美少年 2024-12-17 09:44:02

http://alcaeos.com/applet/classes/MyHomeHeating.class -> 404.

或者换句话说。

  1. applet 元素告诉 JRE 在上述 URL 中查找类。
  2. 班级不在那个地点。 (它也不与 HTML 位于同一目录中。)

类文件在哪里?


顺便说一句: 典型的该死的 Netbeans 生成的代码 (/HTML)。当它生成的内容不是无效时,它就是多余的。

  1. code="MyHomeHeating.class" code 属性不应包含 .class


  2. HR 元素通常跨越页面的整个宽度。

http://alcaeos.com/applet/classes/MyHomeHeating.class -> 404.

Or to put that another way.

  1. The applet element is telling the JRE to look for the class at the URL mentioned above.
  2. The class is not at that location. (Neither is it in the same directory as the HTML.)

Where is the class file?


BTW: Typical bloody Netbeans generated code (/HTML). When what it generates is not invalid, it is redundant.

  1. code="MyHomeHeating.class" The code attribute should not include .class.
  2. <HR WIDTH="100%"> An HR element normally spans the entire width of the page.
北方。的韩爷 2024-12-17 09:44:02

您需要将小程序编译为 .class 文件(不是 ZIP 中的 .java 文件;这些文件是源代码)并将其嵌入到 HTML 页面中。您可以使用 HTML 中的标签来执行这些操作;在这里阅读更多信息:http://www.echoecho.com/applets01.htm

You need to compile your applet into .class files (not .java files like you have in the ZIP; those are source code) and embed it into an HTML page. You can use the tag in HTML to do these; read more here: http://www.echoecho.com/applets01.htm

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