The getCertificateChain() method of java.security.KeyStore class is used to provide the certificate chain for the requested alias. . Syntax:
public final Certificate[] getCertificateChain(String alias) throws KeyStoreException
Parameter: This method accepts a parameter alias which is the name of the alias. Return Value: This method returns the certificate chain for the requested alias if it exists. Exception: This method throws KeyStoreException if you don’t initialize this keystore. Note: All the programs in this article won’t run on online IDE as no ‘privatekey’ Keystore exists. You can check this code on the Java compiler on your system. To check this code, create a Keystore ‘privatekey’ on your system and set your own keystore password to access that keystore. Below are the examples to illustrate the getCertificateChain() method: Example 1:Â
Java
// Java program to demonstrate // getCertificateChain() method Â
import java.security.*; import java.security.cert.*; import java.util.*; import java.io.*; Â
public class GFG { Â Â Â Â public static void main(String[] argv) Â Â Â Â { Â
        try { Â
            // creating the object of KeyStore             // and getting instance             // By using getInstance() method             KeyStore sr = KeyStore.getInstance("JKS"); Â
            // Keystore password is required             // to access Keystore             char [] pass = (" 123456 ").toCharArray(); Â
            // creating and initializing             // object of InputStream             InputStream is                 = new FileInputStream(                     "f:/java/ private key.store"); Â
            // initializing keystore object             sr.load(is, pass); Â
            // getting the certificate             // using getCertificateChain() method             Certificate[] certchain                 = sr.getCertificateChain("ftpkey"); Â
            // display the result             System.out.println(                 "Type of certificate at index 0 : "                 + certchain[ 0 ].getType());         } Â
        catch (Exception e) { Â
            System.out.println(e);         }     } } |
Type of certificate at index 0 : X.509
Example 2: For KeyStoreExceptionÂ
Java
// Java program to demonstrate // getCertificateChain() method Â
import java.security.*; import java.security.cert.*; import java.util.*; import java.io.*; Â
public class GFG { Â Â Â Â public static void main(String[] argv) Â Â Â Â { Â Â Â Â Â Â Â Â try { Â
            // creating the object of KeyStore             // and getting instance             // By using getInstance() method             KeyStore sr                 = KeyStore.getInstance("JKS"); Â
            // initializing keystore object             // sr.load(is, pass); Â
            // getting the certificate             // using getCertificateChain() method             Certificate[] certchain                 = sr.getCertificateChain("ftpkey"); Â
            // display the result             System.out.println(                 "Type of certificate at index 0 : "                 + certchain[ 0 ].getType());         }         catch (Exception e) { Â
            System.out.println("Exception thrown : " + e);         }     } } |
Exception thrown : java.security.KeyStoreException: Uninitialized keystore