378 バイト追加
、 2020年2月15日 (土) 07:33
==Java ビルドタイムスタンプを得る==
[Java]
SimpleDateFormat df = (SimpleDateFormat) SimpleDateFormat.getInstance();
df.applyPattern("yyyyMMddHHmmssSSS");
String timestamp =
df.format(new Date(new File(getClass()
.getClassLoader()
.getResource(getClass().getCanonicalName().replace('.', '/') + ".class")
.toURI()).lastModified()));
return timestamp;