我正在尝试在.html文件中运行applet。但是在firefox浏览器上运行时却出现错误"此浏览器不支持Java Plug-in。更多信息"。我的浏览器已更新并安装了java 8。
我如何解决问题
我正在使用,以下代码
<html>
<title>My Applet</title>
<head>
<script src="http://java.com/js/deployJava.js"></script>
</head>
<body>
<script>
var attributes = {codebase:'http://localhost:8080/Puzzle/test',
code:'S.class',
archive: 'testww.jar',
width: '800',
height: '600'};
var parameters = {java_arguments: '-Xmx256m'}; // customize per your needs
var version = '1.8' ; // JDK version
deployJava.runApplet(attributes, parameters, version);
</script>
</body>
</html>