首页 > 其他 > 详细

修改系统时间

时间:2015-09-30 10:50:34      阅读:183      评论:0      收藏:0      [点我收藏+]
//imports SetLocalTime function from kernel32.dll 
[DllImport("kernel32.dll", SetLastError=true)] 
public static extern int SetLocalTime (ref SystemTime lpSystemTime); 

//struct for date/time apis 
public struct SystemTime 
{ 
public short wYear; 
public short wMonth; 
public short wDayOfWeek; 
public short wDay; 
public short wHour; 
public short wMinute; 
public short wSecond; 
public short wMilliseconds; 
} 

// And then set up a structure with the required properties and call the api from code: 

SystemTime systNew = new SystemTime(); 

// 设置属性 
systNew.wDay = 1; 
systNew.wMonth = 1; 
systNew.wYear = 2004; 
systNew.wHour = 9; 
systNew.wMinute = 0; 
systNew.wSecond = 0; 

// 调用API,更新系统时间 
SetLocalTime(ref systNew);

 

修改系统时间

原文:http://www.cnblogs.com/junhuang/p/4848423.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!