从android中的sd卡读取证书文件(.cer)

时间:2012-03-20 10:36:23

标签: java android certificate

我已将证书文件(x.cer)复制到我的模拟器SD卡中。现在我想将该证书从我的android客户端发送到服务器。
之前我曾经将证书放入密钥库然后将密钥库放入SD卡中。 keystore类具有函数 getCertificate(别名)

现在我想直接读取证书,因为我只复制了证书而不是密钥库。怎么做?

1 个答案:

答案 0 :(得分:4)

这样的东西
CertificateFactory.getInstance("X.509").generateCertificate(new FileInputStream("path")));

应该这样做。

此处描述了如何获取SD卡路径:

how to get file path from sd card in android