keytool就不导入

nzkunb0c  于 2021-06-30  发布在  Java
关注(0)|答案(0)|浏览(263)

如果证书已经存在于信任存储中,而没有交互式提示,我如何告诉keytool不要导入该证书。
以下为互动提示:

keytool -import -alias abc1 -file abc.cer -cacerts -storepass changeit
Certificate already exists in keystore under alias <abc>
Do you still want to add it? [no]:  no
Certificate was not added to keystore

但是当我传递-noprompt时我该怎么做呢?因为我们通过java代码调用它,而我们的实用程序不支持输入。

keytool -import -alias abc1 -file abc.cer -cacerts -storepass changeit -noprompt
Certificate was added to keystore

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题