我的小程序无法在浏览器中运行
谁能帮我一下。我编写了一个程序来控制想象中的房子中的供暖系统,实际上是一个小程序。 但我无法让它在浏览器中作为小程序运行,任何人都可以帮我吗,我链接到我所有代码的 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...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
http://alcaeos.com/applet/classes/MyHomeHeating.class -> 404.
或者换句话说。
类文件在哪里?
顺便说一句: 典型的该死的 Netbeans 生成的代码 (/HTML)。当它生成的内容不是无效时,它就是多余的。
code="MyHomeHeating.class"
code 属性不应包含.class
。
HR 元素通常跨越页面的整个宽度。http://alcaeos.com/applet/classes/MyHomeHeating.class -> 404.
Or to put that another way.
Where is the class file?
BTW: Typical bloody Netbeans generated code (/HTML). When what it generates is not invalid, it is redundant.
code="MyHomeHeating.class"
The code attribute should not include.class
.<HR WIDTH="100%">
An HR element normally spans the entire width of the page.您需要将小程序编译为 .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