⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 e225. importing a certificate from a file.txt

📁 这里面包含了一百多个JAVA源文件
💻 TXT
字号:
See also e224 Exporting a Certificate to a File. 
    // This method reads a certificate to a file. The certificate can be either
    // binary or base64 encoded.
    public static java.security.cert.Certificate importCertificate(File file) {
        try {
            FileInputStream is = new FileInputStream(file);
    
            CertificateFactory cf = CertificateFactory.getInstance("X.509");
            java.security.cert.Certificate cert = cf.generateCertificate(is);
            return cert;
        } catch (CertificateException e) {
        } catch (IOException e) {
        }
        return null;
    }

A certificate can be imported into a keystore using keytool: 
    > keytool -storepass my-keystore-password -alias myalias -import -file infilename.cer


⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -