<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script>
First, use below command to verify the jar is signed correctly.
if the jar is signed correctly you will see below output
jar verified.
Second, you can use winrar to unpack file META-INF/XXXX.RSA
in the signed jar. If you don’t have winrar, you can use below command to unpack the jar.
jar -xvf <lib>.jar
then
you can see XXXX.RSA file under META-INF directory. Use below command
you can see the detail info of the cert which you used to sign.
keytool -printcert -v -file META-INF/XXXX.RSA
本文介绍如何使用jarsigner和keytool命令验证Java JAR文件的签名是否正确,并提供了使用WinRAR或命令行工具解压JAR文件以检查签名证书的具体步骤。
818

被折叠的 条评论
为什么被折叠?



