Java getSpecificationVendor() 方法



描述

Java Package getSpecificationVendor() 方法返回拥有和维护实现此包的类的规范的组织、供应商或公司的名称。

声明

以下是 java.lang.Package.getSpecificationVendor() 方法的声明

public String getSpecificationVendor()

参数

返回值

此方法返回规范供应商,如果未知则返回 null。

异常

获取 java.lang 包的规范供应商示例

以下示例演示了 java.lang.Package.getSpecificationVendor() 方法的使用。在此程序中,我们创建了一个 Package 变量并为其分配了 java.lang 包对象。然后使用 getSpecificationVendor() 方法打印包的规范供应商。

package com.tutorialspoint;

public class PackageDemo {

   public static void main(String[] args) {

      // get the java package
      Package pack = Package.getPackage("java.lang");

      // print the package specification vendor
      System.out.println(pack.getSpecificationVendor());
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

null

获取自定义包的规范供应商示例

以下示例演示了 java.lang.Package.getSpecificationVendor() 方法的使用。在此程序中,我们创建了一个 Package 变量并为其分配了 com.tutorialspoint 包对象。然后使用 getSpecificationVendor() 方法打印包的规范供应商。

package com.tutorialspoint;

public class PackageDemo {

   public static void main(String[] args) {

      // get the java package
      Package pack = Package.getPackage("com.tutorialspoint");

      // print the package specification vendor
      System.out.println(pack.getSpecificationVendor());
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

null

获取 java.util 包的规范供应商示例

以下示例演示了 java.lang.Package.getSpecificationVendor() 方法的使用。在此程序中,我们创建了一个 Package 变量并为其分配了 java.util 包对象。然后使用 getSpecificationVendor() 方法打印包的规范供应商。

package com.tutorialspoint;

public class PackageDemo {

   public static void main(String[] args) {

      // get the java package
      Package pack = Package.getPackage("java.util");

      // print the package specification vendor
      System.out.println(pack.getSpecificationVendor());
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

null
java_lang_package.htm
广告