| ページ一覧 | ブログ | twitter |  書式 | 書式(表) |

MyMemoWiki

「Java ビルドタイムスタンプを得る」の版間の差分

提供: MyMemoWiki
ナビゲーションに移動 検索に移動
 
1行目: 1行目:
==Java ビルドタイムスタンプを得る==
+
==[[Java ビルドタイムスタンプを得る]]==
 
[[Java]] |  
 
[[Java]] |  
  
8行目: 8行目:
 
  df.format(new Date(new File(getClass()
 
  df.format(new Date(new File(getClass()
 
   .getClassLoader()
 
   .getClassLoader()
   .getResource(getClass().getCanonicalName().replace('.', '/') + ".class")
+
   .get[[R]]esource(getClass().getCanonicalName().replace('.', '/') + ".class")
   .toURI()).lastModified()));
+
   .toU[[R]]I()).lastModified()));
 
  return timestamp;
 
  return timestamp;

2020年2月16日 (日) 04:27時点における最新版

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;