简单设置软件有效期的方法

第一步  弄清Linux

    tmp_ptr = gmtime(&tmpcal_ptr);//
    printf(“after localtime, the time is:n%d:%d:%d”, tmp_ptr->tm_hour, tmp_ptr->tm_min, tmp_ptr->tm_sec);

return 0;
}

localtime, but it needs to be here so

 * that the kernel source is self contained.

 */

struct tm {

/*

 * the number of seconds after the minute, normally in the range

 * 0 to 59, but can be up to 60 to allow for leap seconds

 */

int tm_sec;

/* the number of minutes after the hour, in the range 0 to 59*/

int tm_min;

/* the number of hours past midnight, in the range 0 to 23 */

int tm_hour;

/* the day of the month, in the range 1 to 31 */

int tm_mday;

/* the number of months since January, in the range 0 to 11 */ //==>

long tm_year;

/* the number of days since Sunday, in the range 0 to 6 */

int tm_wday;

/* the number of days since January 1, in the range 0 to 365 */

int tm_yday;

};

从上面这些我们可以看出

        ALOGD(“The TS color enhance license’s state is OK.”);

方案二 如何控制软件的有效日期方案2

将第一次加载此功能的时间设置为初始时间

References:

1.这个blog主要是讲述gmtimelocaltime的区别

http://www.linuxidc.com/Linux/2013-04/82670.htm

2.这个blog写的大而全,没重点

http://www.cnblogs.com/sun-frederick/p/4772535.html

3.这个blog主要讲了如何将1970年以来的秒数转换为年月日

我认为应尽量使用库函数来完成,这样能够减少不稳定性,不知道这样思考是否正确,欢迎大神拍砖

http://www.cnblogs.com/lebronjames/archive/2010/09/06/1819359.html

声明:本站部分文章及图片源自用户投稿,如本站任何资料有侵权请您尽早请联系jinwei@zod.com.cn进行处理,非常感谢!

上一篇 2017年6月20日
下一篇 2017年6月20日

相关推荐