public class HardWareUtils {/** * * 获取主板序列号 * * * * @return */public static String getMotherboardSN() {String result = "";try {File file = File...
分类:
编程语言 时间:
2014-08-13 12:41:26
阅读次数:
331
PMP认证培训班(9月开课,针对12月考试)主办单位:项目管理者联盟开课城市:北京开课时间:2014年9月面向对象各类科技与研发、IT软件与通信、工程与设计等项目导向型企业的各级管理人员与项目管理人员、项目经理与技术经理,有志于成长为项目经理的优秀工程师与技术骨干。课程优势十年美国项目管理学会全球教...
分类:
其他好文 时间:
2014-08-13 12:41:16
阅读次数:
292
交流提纲地址:http://lazio10000.github.io/tech/Coding/index.htmlc#编码规范事例:http://lazio10000.github.io/tech/Coding/CodingConventionForDoNet.zip 博客园网友提供,地址:http...
分类:
其他好文 时间:
2014-08-13 12:41:06
阅读次数:
165
redis 的关闭命令 /usr/local/redis/redis-cli -h 127.0.0.1 -p 6379 shutdown 关闭redis服务器,关闭时一定要指定好药关闭的redis服务器的ip和port.下面 参考了原作者的文档 原作者链接http://www.hello-cod.....
分类:
其他好文 时间:
2014-08-13 12:40:46
阅读次数:
256
摘自:http://www.cnblogs.com/xiaochaohuashengmi/archive/2011/09/10/2173092.html官方文档:1.引用是什么:http://www.php.net/manual/zh/language.references.whatare.php2...
分类:
Web程序 时间:
2014-08-13 12:40:36
阅读次数:
257
探索1#include #define N 15using namespace std;int a[N]={1};void yanghui(int n){int i,j;for(i=0;i>n; yanghui(n); return 0;}#include #define N 15using nam...
分类:
其他好文 时间:
2014-08-13 12:40:16
阅读次数:
172
一、使用 sys 用户登录oracle(1)运行—cmd—sqlplus — sys/密码 @连接字符 as sysdba二、授权1、grant ctxapp to 全文检索使用用户;2、grant execute on ctx_dll to 全文检索使用用户;3、全文检索使用用户 登录oracle...
分类:
数据库 时间:
2014-08-13 12:40:06
阅读次数:
230
Function funcReturn valueabsAbsolute value of the argument arg (绝对值)signPlus/minus sign of the argument arg: -1, if the value of arg is negative; 0 if...
分类:
其他好文 时间:
2014-08-13 12:39:56
阅读次数:
204
组织的比较散,主要是标记一下有关 AMF_OBJECT数据组织结构。其标识嵌套结束则为 0x 00 00 09原始数据结构已知:key=“0123456”;Value的值是一个结构体如下:struct usrinfo{ int itype; char name[12]; ...
分类:
其他好文 时间:
2014-08-13 12:39:36
阅读次数:
190
html5 自定义数据属性 ,也就是 data-* 自定义属性。 例如 可以有三种方法访问和修改data: 1.使用getAttribute setAttribute 方法 例如 div.getAttribute("data-last-value") 2.使用datase...
分类:
Web程序 时间:
2014-08-13 12:39:26
阅读次数:
153
试卷模板:papertemaplate岗位类型:positiontype题库:question答卷:sheet应聘者答案(答卷明细表):ansersheet用户表(包含面试吗、HR、应聘者):user角色表:role (用来区分用户的类型)试卷模板和题库的关系(试卷明细表): paperdetail...
分类:
数据库 时间:
2014-08-13 12:39:06
阅读次数:
281
synchronized的一个简单样例public class TextThread {/** * @param args */public static void main(String[] args) {// TODO 自己主动生成方法存根 TxtThread tt = new TxtThrea...
分类:
编程语言 时间:
2014-08-13 12:38:56
阅读次数:
216
MySQL replication case 一则转载:http://www.vmcd.org/2013/09/mysql-replication-case-%E4%B8%80%E5%88%99/Posted by admin on September 10th, 2013最近同事处理了一则mysq...
分类:
数据库 时间:
2014-08-13 12:38:46
阅读次数:
272
#include #define N 15using namespace std;int a[N][N];void yanghui(int n){ int i,j; for(i=0;i>n; yanghui(n); for(i=0;i#define N 15using names...
分类:
其他好文 时间:
2014-08-13 12:38:36
阅读次数:
167
A message containing letters from A-Z is being encoded to numbers using the following mapping:'A' -> 1'B' -> 2...'Z' -> 26Given an encoded message con...
分类:
其他好文 时间:
2014-08-13 12:38:26
阅读次数:
225
1、for与while循环while 循环用于循环次数不是确定的情况for 循环用于循环次数确定的情况下使用for:for ( int i = 0; i 列表名=new list();这样给他实例化一个对象,用for循环添加数public List value = new List(); ...
分类:
其他好文 时间:
2014-08-13 12:38:16
阅读次数:
203
for循环 比如要实现这样的一个For for(int i=10;i>1;i—) { print(i) } 转换成LUA for i=10,1,-1 do print(i) end 在循环里我们常用的 –i ,i++在LUA里不支持,只能写成 i= i-1 ;i=i+1 发现一个有意思的是也可以使用...
分类:
其他好文 时间:
2014-08-13 12:38:07
阅读次数:
183