5
PlayFramework應用程序時,footer.html文件:播放框架得到的最後修改日期的文件
%{
file = new File("footer.html");
path = file.getCanonicalPath();
lm = file.lastModified();
// date = new Date(lm);
}%
<span> Last update: ${lm} </span>
在這裏,我有權路徑,所以footer.html是存在的。
但LM爲0,即它是1970年..但現在是2011年
的問題:爲什麼?它可以與安全管理器或與安全相關的某個方面相關嗎?
它存在,因爲我有正確的PATH變量時做file.getCanonicalPath(); – ses
等等,是的,你是對的:這是錯誤的。但是如何有可能我有正確的道路呢? – ses
我嘗試過'新文件(「app/views/Application/index.html」);'它確實說了正確的時間。你可能在你的canonicalPath上丟失了一些東西。 – Felipe