How do you get the modified date of a web resource in Java?
URL url = new URL(urlString);
URLConnection connection = url.openConnection();
connection.connect();
// What now?
How do you get the modified date of a web resource in Java?
URL url = new URL(urlString);
URLConnection connection = url.openConnection();
connection.connect();
// What now?
Javadoc