发布时间:2017-01-29 21:06:32
最近分析了下Linux设备管理相关的代码【linux/drivers】,本来想偷个懒,直接转一篇Linux设备模型的文章呢,结果找了半天发现还不如自己笔记呢。。哎。。越来越懒了。。这里我们以Linux2.6.11的源码为基础,简单的分析下设备模型框架相关的代码和实现。由于代码比较多,这里只简单的笔记下主干流程代码。bus .........【阅读全文】
发布时间:2017-01-29 21:02:26
256位密钥加密传输文本。encodeAESstr.cpp// encodeAESstr.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include "encodeAESstr.h" #include <string> #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif ///////////////.........【阅读全文】
发布时间:2017-01-29 20:58:31
逐行搜索目录中的文件内容并输出到Excel[C/C++]代码HRESULT AnsiToUnicode(LPCSTR pszA, LPOLESTR* ppszW) { ULONG cCharacters; DWORD dwError; // If input is null then just return the same. if (NULL == pszA) { *ppszW = NULL; return NOERROR; } // Determine number of wide characters to be allocated f.........【阅读全文】
发布时间:2017-01-29 20:54:24
新建项目, 在pom文件中添加如下maven依赖 <dependency> <groupId>javax.validation</groupId> <artifactId>validation-api</artifactId> <version>1.1.0.Final</version> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-validator</artifactId> <version>5.2.1.Final</version> .........【阅读全文】