The difference between

Online search results:

JKS is a signing certificate generated in Studio,

The keystore is generated in Eclipse.

I tried it out in Android Studio, and the generated signature file does end with JSK

conversion

The two formats can be converted to each other, and the conversion is documented here

Command line: JSK –>p12– >keystore

keytool -importkeystore -srckeystore D:\mykey.jks -srcstoretype JKS -deststoretype PKCS12 -destkeystore D:\mykey.p12 keytool -v -importkeystore -srckeystore D:\mykey.p12 -srcstoretype PKCS12 -destkeystore D:\mykey.keystore -deststoretype  JKSCopy the code

validation

keytool -list -v -keystore test.keystore
Copy the code

The subsequent discovery of direct conversion was also successful:

keytool -importkeystore -srckeystore D:\mykey.jks -srcstoretype JKS -destkeystore D:\mykey.keystore -deststoretype JKS
Copy the code

Refer to the article

Blog.csdn.net/linxinfa/ar…