Empaquetar el método getImplementationVendor() en Java con ejemplos

El método getImplementationVendor() de la clase java.lang.Package se utiliza para obtener el proveedor de la implementación de este paquete. El método devuelve el proveedor de implementación del paquete como una string.

Sintaxis: 

public String getImplementationVendor()

Parámetro: Este método no acepta ningún parámetro.
Valor devuelto: este método devuelve el proveedor de implementación del paquete como una string, si se conoce. De lo contrario, devuelve nulo

Los siguientes programas muestran el método getImplementationVendor().

Ejemplo 1: 

Java

// Java program to demonstrate
// getImplementationVendor() method
 
public class Test {
    public static void main(String[] args)
    {
 
        // returns the Package object
        // for this package
        Package myPackage
            = Package.getPackage("java.lang");
 
        System.out.println(
            "Package represented by myPackage: "
            + myPackage.toString());
 
        // Get the implementation vendor of myPackage
        // using getImplementationVendor() method
        System.out.println(
            "Implementation vendor of myPackage: "
            + myPackage.getImplementationVendor());
    }
}
Producción: 

Package represented by myPackage: package java.lang, Java Platform API Specification, version 1.8
Implementation vendor of myPackage: N/A

 

Ejemplo 2:

Java

// Java program to demonstrate
// getImplementationVendor() method
 
public class Test {
    public static void main(String[] args)
    {
 
        // returns the Package object
        // for this package
        Package myPackage
            = Package.getPackage("java.io");
 
        System.out.println(
            "Package represented by myPackage: "
            + myPackage.toString());
 
        // Get the name of myPackage
        // using getImplementationVendor() method
        System.out.println(
            "Implementation vendor of myPackage: "
            + myPackage.getImplementationVendor());
    }
}
Producción: 

Package represented by myPackage: package java.io, Java Platform API Specification, version 1.8
Implementation vendor of myPackage: N/A

 

Referencia: https://docs.oracle.com/javase/9/docs/api/java/lang/Package.html#getImplementationVendor–
 

Publicación traducida automáticamente

Artículo escrito por guptayashgupta53 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 *