标签: android debugging keystore
在android调试期间,加载密钥库非常慢:
KeyStore keystore = KeyStore.getInstance("PKCS12"); InputStrem is = this.getClass().getResourceAsStream("/my-keystore"); keystore.load(is, password);
为什么在调试期间在Android上加载密钥库需要3分钟以上的时间?密钥库的大小约为1k。