0

在我的请求 doPost 中,我有以下代码。

        File file = new File("C:\\temp\\HelloWorld.P12");
        is = new FileInputStream(file);
        String password = "helloworld";
        KeyStore keystore = KeyStore.getInstance("PKCS12");
        keystore.load(is, password.toCharArray());
        KeyStore.PrivateKeyEntry pkEntry = (KeyStore.PrivateKeyEntry)
                keystore.getEntry("hello", new KeyStore.PasswordProtection("helloworld".toCharArray()));

对于第一个请求pkEntry返回 NOT NULL 值,我可以获得私钥。但是第二次它返回 NULL 所以我无法从第二个请求开始获取私钥。我需要做什么才能pkEntry为每个请求获取 NOT NULL ?

4

1 回答 1

0

将证书代码加载到静态块里面,只加载一次。

于 2014-10-13T03:56:09.643 回答