Java Package .getImplementationVendor ()
Syntax
Package.getImplementationVendor() has the following syntax.
public String getImplementationVendor()
Example
In the following code shows how to use Package.getImplementationVendor() method.
//w w w . j a va2 s .c om
public class Main {
public static void main(String[] args) {
// create a package object for java.lang package
Package pack = Package.getPackage("java.lang");
// get the implementation vendor
System.out.println(pack.getImplementationVendor());
}
}
The code above generates the following result.