当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Package getSpecificationVendor()用法及代码示例


java.lang.Package类的getSpecificationVendor()方法用于获取此包的规范的供应商。该方法以String的形式返回包的规范供应商。

用法:

public String getSpecificationVendor()

参数:此方法不接受任何参数。


返回值:如果已知,则此方法以String的形式返回包的规范供应商。否则返回null

下面的程序演示了getSpecificationVendor()方法。

示例1:

// Java program to demonstrate 
// getSpecificationVendor() 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 specification vendor 
        // of myPackage using 
        // getSpecificationVendor() method 
        System.out.println( 
            "Specification vendor"
            + " of myPackage: "
            + myPackage.getSpecificationVendor()); 
    } 
}
输出:
Package represented by myPackage: package java.lang, Java Platform API Specification, version 1.8
Specification vendor of myPackage: Oracle Corporation

示例2:

// Java program to demonstrate 
// getSpecificationVendor() 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 specification vendor 
        // of myPackage using 
        // getSpecificationVendor() method 
        System.out.println( 
            "Specification vendor"
            + " of myPackage: "
            + myPackage.getSpecificationVendor()); 
    } 
}
输出:
Package represented by myPackage: package java.io, Java Platform API Specification, version 1.8
Specification vendor of myPackage: Oracle Corporation

参考: https://docs.oracle.com/javase/9/docs/api/java/lang/Package.html#getSpecificationVendor–



相关用法


注:本文由纯净天空筛选整理自guptayashgupta53大神的英文原创作品 Package getSpecificationVendor() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。