0

我正在使用 PEMReader 并且我的这段代码不起作用。

protected static KeyPair doReadKeyPair(InputStream is) throws Exception {
    PemReader r = new PemReader(new InputStreamReader(is));
    return (KeyPair) r.readObject();
}

错误:

This method readObject is undefined forfor the type PemReader.

但是在许多网站上我都看到了这个解决方案,那么为什么它对他们有用而不对我有用呢?

4

1 回答 1

3

你想做什么?PEMReader 的 javadoc 说它已被弃用,您应该使用 PEMParser

http://www.bouncycastle.org/docs/pkixdocs1.4/org/bouncycastle/openssl/PEMReader.html

于 2013-03-18T09:53:54.167 回答