获取java类的编译时间戳
是否可以可靠地确定本地运行的 Java 应用程序以及作为小程序和/或 JNLP Web 应用程序运行的给定类的编译时间戳?
Is it possible to reliably determine the compilation time stamp of a given class for both java applications running locally and as applets and/or JNLP webapps ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据 Java 虚拟机规范,类文件格式 不需要任何类型的时间戳,因此您最好检查包含该类的 Class 或 Jar 文件的修改时间。不幸的是,文件系统操作,尤其是不同主机之间的文件系统操作,可能无法保留此类时间戳。
我想说默认情况下没有可靠的方法。但是,您可以轻松地将这样的时间戳嵌入到 Jar 文件或类文件中,作为构建过程的一部分。
According to the Java Virtual Machine Specification, the Class File Format does not require a timestamp of any sort, so the best you could do is check the modification time of the Class or Jar file that contains the class. Unfortunately, filesystem operations, especially between various hosts, might not preserve such timestamps.
I would say there isn't a reliable way by default. However, you could easily embed such a timestamp in a Jar file or a Class file as part of your build process.