El método getDefaultType() de la clase java.security.KeyStore se utiliza para proporcionar la instancia predeterminada de la clase Keystore.
Sintaxis:
public static final String getDefaultType()
Parámetro: Este método no toma nada como parámetro.
Valor devuelto: este método devuelve la instancia predeterminada de la clase Keystore .
Nota: Todos los programas de este artículo no se ejecutarán en un IDE en línea, ya que no existe un almacén de claves de «clave privada». Puede verificar este código en el compilador de Java en su sistema. Para verificar este código, cree una ‘clave privada’ de almacén de claves en su sistema y establezca su propia contraseña de almacén de claves para acceder a ese almacén de claves.
A continuación se muestran los ejemplos para ilustrar el método getDefaultType() :
Ejemplo 1:
Java
// Java program to demonstrate getDefaultType() 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 type of default keystore // using getDefaultType() method String type = sr.getDefaultType(); // display the result System.out.println( "type of default" + " keystore entry : " + type); } catch (NoSuchAlgorithmException e) { System.out.println("Exception thrown : " + e); } catch (NullPointerException e) { System.out.println("Exception thrown : " + e); } catch (KeyStoreException e) { System.out.println("Exception thrown : " + e); } catch (FileNotFoundException e) { System.out.println("Exception thrown : " + e); } catch (IOException e) { System.out.println("Exception thrown : " + e); } catch (CertificateException e) { System.out.println("Exception thrown : " + e); } } }
Producción:
Ejemplo 2: sin cargar el almacén de claves
Java
// Java program to demonstrate getDefaultType() 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 type of default keystore // using getDefaultType() method String type = sr.getDefaultType(); // display the result System.out.println( "type of default keystore entry : " + type); } catch (FileNotFoundException e) { System.out.println("Exception thrown : " + e); } catch (NullPointerException e) { System.out.println("Exception thrown : " + e); } catch (KeyStoreException e) { System.out.println("Exception thrown : " + e); } } }
Producción:
Referencia: https://docs.oracle.com/javase/9/docs/api/java/security/KeyStore.html#getDefaultType–
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA