我在将applet嵌入网页时遇到麻烦。我认为我做的不正确。
* 我的html文件与.class文件位于同一目录中
我的主要方法是在CardApp类中
这是我的html代码
<html> <head> <meta content="text/html; charset=ISO-8859-1" http-equiv="content-type"> <title>TestJCardBet.html</title> </head> <body> <applet codebase="" code="CardApp.class" height="400" width="500"></applet> </body> </html>
要使applet在各种浏览器上都能正常工作是非常困难的。早期,标签没有得到适当的标准化,因此Internet Explorer和Mozilla采取了不同的方向。
Sun开发了一种通用JavaScript,可以处理所有特定的浏览器怪癖,因此您不必担心浏览器的兼容性。
将此添加到您的<head>部分:
<head>
<script src="//www.java.com/js/deployJava.js"></script>
这<body>部分:
<body>
<script> var attributes = {codebase: 'http://my.url/my/path/to/codebase', code: 'my.main.Applet.class', archive: 'my-archive.jar', width: '800', height: '600'}; var parameters = {java_arguments: '-Xmx256m'}; // customize per your needs var version = '1.5'; // JDK version deployJava.runApplet(attributes, parameters, version); </script>