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

MyMemoWiki

差分

ナビゲーションに移動 検索に移動
ページの作成:「==Java ビルドタイムスタンプを得る== [Java] SimpleDateFormat df = (SimpleDateFormat) SimpleDateFormat.getInstance(); df.applyPattern("yyyyMMddHHmmssSSS…」
==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;

案内メニュー