linuxでいう touch コマンドのようなことをするには、File#setLastModifiedにて可能です。

File file = new File("path")
file.setLastModified(System.currentTimeMillis)