java jar包示例_Java包getSpecificationVersion()方法和示例

java jar包示例

包类的getSpecificationVersion()方法 (Package Class getSpecificationVersion() method)

  • getSpecificationVersion() method is available in java.lang package.

    getSpecificationVersion()方法在java.lang包中可用。

  • getSpecificationVersion() method is used to retrieve the specification version of the package that this package implements and the version is a sequence of no negative decimal integer and is separated by "." and may have leading zeros.

    getSpecificationVersion()方法用于检索此程序包实现的程序包的规范版本,该版本是无负十进制整数的序列,并用“。”分隔 并可能有前导零。

  • getSpecificationVersion() method is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error.

    getSpecificationVersion()方法是一种非静态方法,只能通过类对象访问,如果尝试使用类名称访问该方法,则会收到错误消息。

  • getSpecificationVersion() method does not throw an exception at the time of returning the specification version of the package.

    返回包的规范版本时, getSpecificationVersion()方法不会引发异常。

Syntax:

句法:

    public String getSpecificationVersion();

Parameter(s):

参数:

  • It does not accept any parameter.

    它不接受任何参数。

Return value:

返回值:

The return type of this method is String, it returns the version of the specification that this package implements otherwise it returns null when specification version of the package is not known.

此方法的返回类型为String ,它返回此程序包实现的规范的版本,否则,当未知程序包的规范版本时,它返回null。

Example:

例:

// Java program to demonstrate the example 
// of String getSpecificationVersion()
// of Package method
public class GetSpecificationVersion {
public static void main(String[] args) {
// Get Package by using getPackage() method
Package pkg = Package.getPackage("java.util");
// Get specification version of the package by using 
// getSpecificationVersion() and stored in a variable
// called sversion
String sversion = pkg.getSpecificationVersion();
// Display version of the package
System.out.print("Package Version: ");
System.out.print(sversion);
}
}

Output

输出量

Package Version: 1.4

翻译自: https://www.includehelp.com/java/package-getspecificationversion-method-with-example.aspx

java jar包示例

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/545680.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

JAVA类(手机充电、放音乐示例)

练习练习 import java.util.Scanner;//包含包public class ex1 {public static void main(String args[])//程序入口{Phone phone new Phone();//建一个手机phone.logo "SONY";//弄上个牌子phone.battery.power 100;//给电池弄上100电Scanner reader new Scanner…

linux——进程(创建、终止、等待、替换)

进程的基本操作 概念 程序运行的一个实例,其占有一定的空间。 查询某一进程当前情况 ps aux | grep 进程名终止进程 kill -9 pid; //pid指需要终止的进程pid创建 pid_t fork();该函数有两个返回值,对于子进程其返回的是0&#xf…

第 3-1 课:集合详解(上) + 面试题

先来看看集合的继承关系图,如下图所示: 其中: 外框为虚线的表示接口,边框为实线的表示类;箭头为虚线的表示实现了接口,箭头为实线的表示继承了类。为了方便理解,我隐藏了一些与本文内容无关的信息,隐藏的这些内容会在后面的章节中进行详细地介绍。 从图中可以看出,集…

Java类class isAnnotationPresent()方法与示例

类类isAnnotationPresent()方法 (Class class isAnnotationPresent() method) isAnnotationPresent() method is available in java.lang package. isAnnotationPresent()方法在java.lang包中可用。 isAnnotationPresent() method returns true when the annotation for the gi…

CCNA 学习笔记(四)--路由协议(RIP)

现在我们先复习下,什么是路由?答:当路由器(或者其它三层设备)收到一个IP数据包时,会查看数据包的IP头部中的目的IP地址,并在路由表中进行查找,在匹配到最优路由后,将数据…

第 3-3 课:泛型和迭代器 + 面试题

泛型 1)为什么要用泛型? 在泛型没有诞生之前,我们经常会遇到这样的问题,如以下代码所示: ArrayList arrayList = new ArrayList(); arrayList.add("Java"); arrayList.add(24); for (int i = 0; i < arrayList.size(); i++) {String str = (String) array…

自连接 实例

SELECT * FROM student_grade;select t1.num,t1.name,t1.chinese,t2.math,t3.english from (SELECT a.num,a.name,a.sex,b.grade as chinese FROM student_grade as ainner join student_grade as b on a.num b.num and a.course b.coursewhere b.course 语文) as t1,(SELEC…

linux——进程间通信(管道)

概念 进程间通信是指子进程与父进程间的通信&#xff0c;一般用作父进程对子进程的控制或者子进程将其动向告诉父进程&#xff0c;由于进程是一个程序执行的实例&#xff0c;进程之间本身是无法进行通信的&#xff0c;故而运用一种管道将二者联系起来。当然管道并不只限于在父子…

Java LineNumberInputStream available()方法与示例

LineNumberInputStream类的available()方法 (LineNumberInputStream Class available() method) available() method is available in java.io package. available()方法在java.io包中可用。 available() method is used to return the number of available bytes that can be …

第 3-2 课:集合详解(下) + 面试题

集合有两个大接口:Collection 和 Map,本文重点来讲解集合中另一个常用的集合类型 Map。 以下是 Map 的继承关系图: Map 简介 Map 常用的实现类如下: Hashtable:Java 早期提供的一个哈希表实现,它是线程安全的,不支持 null 键和值,因为它的性能不如 ConcurrentHashMap…

Linux下系统与硬件时钟管理

在无NTP而又处在私网的情况下、所以有效的保证时间的正确性其实可以使用此种方案来保证时间的准确性1、系统日期时间设定[rootrhel ~]# date -s "2014-11-27 21:50:00" 设置当前时间与日期Thu Nov 27 21:50:00 EST 20142、硬件时钟日期与时间设定[rootrhel /]# hwclo…

Oracle数据库ORA-12514错误的解决办法

问题提示错误提示:ERROR:ORA-12514: TNS:listener could not resolve SERVICE_NAME given in connect解决方法&#xff1a;代码如下1. 打开<OracleHome>/network/admin/listener.ora文件&#xff0c;找到&#xff1a;SID_LIST_LISTENER (SID_LIST (SID_DESC (SID_NAME P…

Java类类getResourceAsStream()方法及示例

类类getResourceAsStream()方法 (Class class getResourceAsStream() method) getResourceAsStream() method is available in java.lang package. getResourceAsStream()方法在java.lang包中可用。 getResourceAsStream() method is used to get the resource as a parameter …

第 4-1 课:BIO、NIO、AIO 详解 + 面试题

IO 介绍 IO 是 Input/Output 的缩写,它是基于流模型实现的,比如操作文件时使用输入流和输出流来写入和读取文件等。 IO 分类 传统的 IO,按照流类型我们可以分为: 字符流字节流其中,字符流包括 Reader、Writer;字节流包括 InputStream、OutputStream。传统 IO 的类关系…

带头节点循环链表实现队列

队列的特征就是“先入先出”&#xff0c;入队时在链表的尾部插入数据&#xff0c;出队时删除掉头节点后面的节点&#xff0c;需要一个尾指针&#xff0c;始终指向链表的尾部&#xff08;新加进来的节点&#xff09;。具体请看原理图&#xff1a; 代码实现 #include <stdio…

ProFTPD 初探

ProFTPD:一个Unix平台上或是类Unix平台上&#xff08;如Linux, FreeBSD等&#xff09;的FTP服务器程序。转载于:https://www.cnblogs.com/lsl8966/p/4129084.html

ANSI编码对比表

ASCII码对照表 http://www.cnblogs.com/gamesky/archive/2012/07/28/2613264.html目前计算机中用得最广泛的字符集及其编码&#xff0c;是由美国国家标准局(ANSI)制定的ASCII码&#xff08;American Standard Code for Information Interchange&#xff0c;美国标准信息交换码&…

第 3-4 课:数据结构——队列详解 + 面试题

队列(Queue):与栈相对的一种数据结构, 集合(Collection)的一个子类。队列允许在一端进行插入操作,而在另一端进行删除操作的线性表,栈的特点是后进先出,而队列的特点是先进先出。队列的用处很大,比如实现消息队列。 Queue 类关系图,如下图所示: 注:为了让读者更直…

预处理阶乘和阶乘逆元_计算数字的阶乘| 8086微处理器

预处理阶乘和阶乘逆元Problem statement: 问题陈述&#xff1a; Write an assembly language program for calculating the factorial of a number using 8086 microprocessor. 编写一个汇编语言程序&#xff0c;以使用8086微处理器来计算数字的阶乘。 Assumptions: 假设&…

GB/T 17710-1999 PHP生成校验码

校验码算法描述如下&#xff1a;详细&#xff1a;http://wenku.baidu.com/link?urlCDvNJ1sLYOPzbbxjEy5R-oME95RlfTCUU5-I5M0bqUt0I32b0Xd0EKmI-HiFQHhY8OcB6ERTml7pUwXFseLl8GGvkuc7w0V2sFDxi2H0XGC本例子以16位编号为例子&#xff0c;用PHP予以实现&#xff0c;代码如下&…