The preceding Java code will show date of URL connection.
- import java.net.HttpURLConnection;
- import java.net.URL;
- import java.util.Date;
- public class Demo {
- public static void main(String args[])
- throws Exception {
- URL url = new URL("http://www.csharpcorner.com");
- HttpURLConnection httpCon = (HttpURLConnection) url.openConnection();
- long date = httpCon.getDate();
- if (date == 0) System.out.println("No date information.");
- else System.out.println("Date: " + new Date(date));
- }
- }
Thank you, keep learning and sharing.