Net Filetime
# Java Example - Check the Last Modification Time of a Specified File on a Host
[ Java Example](#)
The following example demonstrates how to check the last modification time of a specified file on a host:
## Main.java File
import java.net.URL; import java.net.URLConnection; import java.util.Date; import java.text.SimpleDateFormat; public class Main{public static void main(String[]argv)throws Exception{URL u = new URL("http://127.0.0.1/test/test.html"); URLConnection uc = u.openConnection(); SimpleDateFormat ft = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss"); uc.setUseCaches(false); long timestamp = uc.getLastModified(); System.out.println("test.html File Last Modified Time :" + ft.format(new Date(timestamp))); }}
The output of the above code is:
test.html File Last Modified Time :2018-09-06 10:06:04
[ Java Example](#)
YouTip