Here you can find the source of touchFile(String target)
public static void touchFile(String target) throws IOException
//package com.java2s; //License from project: GNU General Public License import java.io.File; import java.io.IOException; import java.util.Date; public class Main { public static void touchFile(String target) throws IOException { long now = new Date().getTime(); new File(target).setLastModified(now); }/*from w w w .j a va2s . c o m*/ }