Método Provider toString() en Java con ejemplos

El método toString() de la clase java.security.Provider se utiliza para devolver una string con el nombre y el número de versión de este proveedor.

Sintaxis:

public String toString()

Valor devuelto: este método devuelve la string con el nombre y el número de versión de este proveedor.

A continuación se muestran los ejemplos para ilustrar el método toString() :

Ejemplo 1:

// Java program to demonstrate
// getVersion() method
  
import java.security.*;
import java.util.*;
  
public class GFG1 {
    public static void main(String[] argv) throws Exception
    {
  
        try {
            // creating the object of  KeyPairGenerator
            KeyPairGenerator sr = KeyPairGenerator.getInstance("DSA", "SUN");
  
            // getting the Provider of the KeyPairGenerator sr
            // by using method getProvider()
            Provider provider = sr.getProvider();
  
            // getting the name and version of the provider
            // using toString() method
            String nv = provider.toString();
  
            // printing the string info
            System.out.println("Provider : " + nv);
        }
  
        catch (NoSuchAlgorithmException e) {
  
            System.out.println("Exception thrown : " + e);
        }
    }
}
Producción:

Provider : SUN version 1.8

Ejemplo 2:

// Java program to demonstrate
// getVersion() method
  
import java.security.*;
import java.util.*;
  
public class GFG1 {
    public static void main(String[] argv) throws Exception
    {
  
        try {
            // creating the object of  SecureRandom
            SecureRandom sr = SecureRandom.getInstance("SHA1PRNG");
  
            // getting the Provider of the SecureRandom sr
            // by using method getProvider()
            Provider provider = sr.getProvider();
  
            // getting the name and version of the provider
            // using toString() method
            String nv = provider.toString();
  
            // printing the string info
            System.out.println("Provider : " + nv);
        }
  
        catch (NoSuchAlgorithmException e) {
  
            System.out.println("Exception thrown : " + e);
        }
    }
}
Producción:

Provider : SUN version 1.8

Publicación traducida automáticamente

Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *