El método deleteEntry(String alias) de la clase java.security.KeyStore se utiliza para eliminar la entrada del nombre de alias solicitado.
Sintaxis:
public final void deleteEntry(String alias) throws KeyStoreException
Parámetro: Este método busca el nombre del alias como parámetro de tipo String del cual se quiere borrar la entrada.
Valor devuelto: este método no tiene nada que devolver.
Excepción: este método lanza KeyStoreException si no inicializa este almacén de claves.
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 configure 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 deleteEntry() :
Ejemplo 1:
// Java program to demonstrate // getInstance() 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 Enumeration<String> object // and initializing with null Enumeration<String> e = null; // creating the object of MessageDigest // and getting instance // By using getInstance() method KeyStore sr = KeyStore.getInstance("JKS"); // keystore password is require 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 list of aliases // using aliases() method e = sr.aliases(); // display the result System.out.println("List of all the alias" + " present before deletion"); while (e.hasMoreElements()) { System.out.print(e.nextElement() + " "); System.out.println(); } // delete the entry having alias name htttp // using deleteEntry method sr.deleteEntry("htttp"); // getting the list of aliases // using aliases() method e = sr.aliases(); // display the result System.out.println("\nList of all the alias" + " present after deletion"); while (e.hasMoreElements()) { System.out.print(e.nextElement() + " "); System.out.println(); } } 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); } } }
List of all the alias present before deletion ftpkey htttp List of all the alias present after deletion ftpkey
Ejemplo 2: Para
// Java program to demonstrate // getInstance() 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 Enumeration<String> object // and initializing with null Enumeration<String> e = null; // creating the object of MessageDigest // and getting instance // By using getInstance() method KeyStore sr = KeyStore.getInstance("JKS"); // initializing keystore object // sr.load(is, pass); // getting the list of aliases // using aliases() method e = sr.aliases(); // display the result System.out.println("List of all the alias " + "present before deletion"); while (e.hasMoreElements()) { System.out.print(e.nextElement() + " "); System.out.println(); } // delete the entry having alias name htttp // using deleteEntry method sr.deleteEntry("htttp"); // getting the list of aliases // using aliases() method e = sr.aliases(); // display the result System.out.println("\nList of all the alias" + " present after deletion"); while (e.hasMoreElements()) { System.out.print(e.nextElement() + " "); System.out.println(); } } catch (NullPointerException e) { System.out.println("Exception thrown : " + e); } catch (KeyStoreException e) { System.out.println("Exception thrown : " + e); } } }
Exception thrown : java.security.KeyStoreException: Uninitialized keystore
Referencia: https://docs.oracle.com/javase/9/docs/api/java/security/KeyStore.html#deleteEntry-java.lang.String-
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA