Icepdf 小程序查看器空白
搜索了一段时间后,我似乎找不到有关我遇到的 ICEPDF 小程序查看器问题的具体信息。我成功地使用 ant build 构建了 dist 文件夹,我签署了 jar 文件,上传到我的服务器。我不明白为什么我总是出现空白屏幕,我尝试使用标签而不是标签,但仍然出现空白屏幕......感谢您的帮助。
<body>
<object width="800"height="600" archive="icepdf-core.jar, icepdf-viewer.jar, icepdf-applet.jar"
<param name="type" value="application/x-java-applet;jpi-version=1.5.0"/>
<param name="java_arguments" value="-Xmx128m"/>
<param name="classloader_cache" value="false"/>
<param name="url" value="http://www.example.com/weekly.pdf"/>
<param name="code" value="ViewerApplet.class"/>
</object>
</body>
After searching for a while, I can't seem to find specific information on ICEPDF applet viewer issue I'm having. I successfully used ant build to build the dist folder, i signed the jar files, uploaded to my server. I can't figure out why I keep getting a blank screen, i tried using the tags instead tags but still getting a blank screen...... Thanks for your help.
<body>
<object width="800"height="600" archive="icepdf-core.jar, icepdf-viewer.jar, icepdf-applet.jar"
<param name="type" value="application/x-java-applet;jpi-version=1.5.0"/>
<param name="java_arguments" value="-Xmx128m"/>
<param name="classloader_cache" value="false"/>
<param name="url" value="http://www.example.com/weekly.pdf"/>
<param name="code" value="ViewerApplet.class"/>
</object>
</body>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先验证 jar 是否已正确签名:
如果是,请尝试替换 jar 的名称,因为有时服务器会保存 jar 文件的副本,这就是为什么有时对 jar 所做的更改在上传到服务器时不会反映出来。
另外,检查运行 jar 文件的 java 版本是否与构建 jar 文件的方式兼容。
Verify first if the jar has been signed correcty by:
If yes, try replacing the name of the jar, as sometimes the server saves a copy of the jar file, this is why sometimes changes done to the jar do not reflect when uploading to server.
Also, check if java version of where the jar file is running is compatible to how the jar file was built.