Google Guava is a java library with lot of utilities and reusable components.
This requires the library guava-10.0.jar to be in classpath.
The following example shows using Files.touch() API.
//Creates an empty file or updates the last updated timestamp on the
//same as the unix command of the same name.
Files.touch(file);
System.out.println("Successfully touched the file");
}