【发布时间】:2012-12-26 18:25:16
【问题描述】:
下面是我的 HTML 代码
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>
<applet codebase ="." code="CallApplet.class"
archive="CallApplet.jar,jna.jar,platform.jar"
height="100" width="100"/>
</body>
</html>
上面的html文件和所有jar都在同一个文件夹中
我在这里做错了什么,我收到错误 java.lang.NoClassDefFoundError: com/sun/jna/Library
如果您想查看我的小程序代码,请转到Applet runs in eclipse but not in browser - java security
更新
我需要签署所有外部 jar 文件 [jna 和平台]
现在我遇到错误 - java.lang.UnsatisfiedLinkError: Unable to load library 'TSCLIB': The specified module could not be found.
基本上,此错误是因为它试图访问放置在 system32 文件夹中的 DLL 文件。有人可以帮忙吗
【问题讨论】: