C 時間校驗器

2022-04-02 19:43:44 字數 1330 閱讀 8622

時間校驗器處理過程:

從網路獲得標準北京時間

解析時間

修改本地時間

*注:對於windows vista以上系統修改本地時間需要管理員許可權,所以要用管理員許可權開啟開發工具,後續執行效驗器時也要用管理員許可權執行.

實現:1 獲得標準北京時間

webrequest wrt = null;

webresponse wrp = null;

wrt = webrequest.create("");

wrt.credentials = credentialcache.defaultcredentials;

wrp = wrt.getresponse();

streamreader sr = new streamreader(wrp.getresponsestream(), encoding.utf8);

2 解析時間

string html = sr.readtoend();

xelement root = xelement.parse(html);

xelement element = root.element("time");

int year = int.parse(element.element("year").value);

int month = int.parse(element.element("month").value);

int day = int.parse(element.element("day").value);

int hour = int.parse(element.element("hour").value);

int minite = int.parse(element.element("minite").value);

int second = int.parse(element.element("second").value);

3 修改本機系統時間

修改本機系統時間使用setlocaltime windows api實現.

首先設定結構體作為setlocaltime的引數:

[structlayout(layoutkind.sequential)]

public struct systemtime

class program

// console.writeline(year);

// console.writeline(root.element("month").value);

sr.close();

wrp.close();

console.readkey();}}

}

SpringBoot 時間校驗

在日常開發中常常會出現介面引數中有開始時間和結束時間兩個屬性,需要校驗兩個時間的大小關係,但jsr 303並未給出這樣的註解,但是給出了constraintvalidator這個介面,提供使用者的自定義校驗。下面開始開始時間和結束時間校驗的註解。1 時間校驗註解 這個註解只能應用於類上,通過star...

linux校驗時間

一.基本方法 date s 2018 09 02 04 23 45 clock w 把時間寫入cmos 乙個ram晶元 hwclock 檢視硬體時間 hwclock w 將系統時間寫入硬體時間 hwclock hctosys 將系統時間調整為和硬體時間一樣 hwclock systohc 將硬體時間...

PHP校驗時間

一直用strtotime校驗,總覺得不太準確 校驗時間格式必須為ymd格式或者y m d格式 param string data 20200101 202 01 01 return bool function check dateformat date else return true 比正則簡單一...