Java URL连接日期
如何获得URL连接的日期?
解决方法
下面的示例演示如何通过使用HttpURLConnection类的httpCon.getDate()方法来获取URL连接的日期。
import java.net.HttpURLConnection; import java.net.URL; import java.util.Date; public class Main{ public static void main(String args[]) throws Exception { URL url = new URL("http://www.google.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)); } }
结果
上面的代码示例将产生以下结果。
Date:05.26.2014