java本地以及網路時間獲取

2021-08-15 08:37:00 字數 1258 閱讀 1296

tim 1:

calendar類獲取本地時間的時間戳型別

可以通過get方式分別得到年月日時分秒

也可以通過 ******dateformat類轉成yyyy-mm-dd hh-mm-ss 年月日時分秒型別

int year, month, day, week, hh;

calendar calendar = calendar.getinstance();

//除錯輸出calendar

system.err.println(calendar);

year = calendar.get(calendar.year);

month = calendar.get(calendar.month);

day = calendar.get(calendar.day_of_month);

week = calendar.get(calendar.day_of_week);

hh = calendar.get(calendar.hour);

******dateformat dateformat = new ******dateformat("yyyy-mm-dd hh:mm:ss");

system.out.println("date=" + dateformat.format(calendar.gettime()));

system.out.println("year=" + year);

system.out.println("month=" + month);

system.out.println("day=" + day);

system.out.println("week=" + week);

system.out.println("hh=" + hh);

tim 2:

獲取網路時間

定義**:string baiurl="";

利用url訪問**getdate獲取時間得到當前網路時間 

再用******dateformat抓華日期時間型

ps:http一定要帶上哦 不錯會抱網路型別錯誤哦。

上**public static void main(string args)

public static string gettime(string baiurl) catch (exception e)

return null;

} 一般都要獲取網路時間   畢竟本地時間有時候不那麼準確  就這樣了  okk了。新手一枚  只為平時的一些總結  如有不對之處 請指出。

python 獲取網路時間及修改本地時間

本本經常時間錯亂,偶閒暇之作,專為同步本本時間。以前有朋友提到日期時間設定裡面的有些時間伺服器。限於不同的網路,有時候這些時間伺服器不一定能用。因此這次選擇的是www.baidu.com這個大家都能用吧。接下來上python 8 r.getheaders 獲取所有的http頭 9 ts r.geth...

python 獲取網路時間及修改本地時間

本本經常時間錯亂,偶閒暇之作,專為同步本本時間。以前有朋友提到日期時間設定裡面的有些時間伺服器。限於不同的網路,有時候這些時間伺服器不一定能用。因此這次選擇的是www.baidu.com這個大家都能用吧。接下來上python 8 r.getheaders 獲取所有的http頭 9 ts r.geth...

獲取本地時間

獲取本地時間戳 int gettimestamp timeval tm gettimeofday tm,null return tm.tv sec 單位 秒 return tm.tv usec 單位 毫秒 獲取本地時間 time t t time null tm lt localtime t int...