1.通過util包中的date獲取
******dateformat sdf = new ******dateformat("yyyy-mm-dd"); //設定日期格式
string nowdate = sdf.format(new date()); //string型別時間
date nowdate1 = sdf.parse(nowdate); //date型別時間
2.通過util包的calendar 獲取 , 也可以分別獲取年月日時分秒
calendar cal= calendar.getinstance();
******dateformat sdf= new ******dateformat("yyyy-mm-dd :hh:mm:ss");
system.out.println(sdf.format(cal.gettime()));
//分別獲取年月日時分秒
int y=cal.get(calendar.year);
int m=cal.get(calendar.month);
int d=cal.get(calendar.date);
int h=cal.get(calendar.hour_of_day);
int mi=cal.get(calendar.minute);
int s=cal.get(calendar.second);
system.out.println("現在時刻是"+y+"年"+m+"月"+d+"日"+h+"時"+mi+"分"+s+"秒");
獲取系統當前可用串列埠的兩種方法
進行串列埠通訊之前,需要獲取當前系統的可用串列埠。要想達到此目的,有兩種方式,讀取登錄檔和使用createfile函式輪詢讀取串列埠。1.使用createfile輪詢讀取串列埠 1 uint ccomdebugtooldlg getserialportstate 217 else 1821 clos...
C 獲取當前是星期幾的兩種方法
c 的功能很強大,卻沒有直接提供面向漢字文化的開發傾向 比如我現在要說的獲取當前的星期我提供兩種方法 datetime.now.dayofweek 查詢msdn可以知道該屬性返回的結果是 摘要 獲取此例項所表示的日期是星期幾。返回結果 乙個 system.dayofweek 列舉常數,它指示星期幾。...
兩種方法獲取檔案OEP
讀取的字段都是一樣的,只是乙個直接從pe檔案中讀取,乙個對映到記憶體後再讀取 1.檔案直接訪問法 bool readoepbyfile lpctstr szfilename dword dwoep,cbread image dos header dos header sizeof image dos...