'''httpsqs?????@author xiaopenga = HttpsqsClient('192.168.0.218','1218','httpsqsmmall.com')print a.put('logtest','sdfsfsf')print a.get('logtest')'''im...
分类:
编程语言 时间:
2014-07-07 11:15:30
阅读次数:
249
/********************************************************************** Author : Samson* Date : 06/18/2014* Test platform:* Mint 15* GNU bash, version...
分类:
其他好文 时间:
2014-07-07 10:01:11
阅读次数:
186
在多个线程要互斥访问数据,但线程间需要同步时——例如任务分多个阶段,特定线程负责特定阶段的情况,经常合作使用synchronized 和 wait() /** * * 计算输出其他线程锁计算的数据 * @author * */public class Main { public stati...
分类:
编程语言 时间:
2014-07-07 09:13:53
阅读次数:
220
#-*-coding:utf-8-*-#====================#File:python#Author:python#Date:2014#====================__author__='Administrator'#pythonclass#面向对象编程oop思想,3个...
分类:
编程语言 时间:
2014-07-03 23:24:06
阅读次数:
447
我使用 Git 客户端工具是 TortoiseGit,在提交更新的时候,不知何时起会出现下面这种情况: 正常提交作者信息显示应该是: 本来也没怎么注意,但是在提交历史中,记录就不显示出来了,也就是在首页的提交记录中: 根据提示信息:“Unrecognized author. If this...
分类:
其他好文 时间:
2014-07-03 13:18:08
阅读次数:
2460
第一步: 创建一个Changelog File: 这个database Changelog file列举了数据库中所有的改变情况,该文件是以xml为基础的,下面是一个空的xml文件:1 2 3 8 9 第二步: 增加一个变化集; 每一个变化集都是有id属性和author属性来唯一确定的,这两个属.....
分类:
其他好文 时间:
2014-07-03 09:51:25
阅读次数:
195
choose, when, otherwise有时我们不想应用所有的条件, 相反我们想选择很多情况下的一种。 Java 中的 switch 和 语句相似,MyBatis 提供 choose 元素。我们使用上面的示例,但是现在我们来搜索当 title 提供时仅有 title 条件,当 author 提...
分类:
数据库 时间:
2014-07-03 09:23:49
阅读次数:
223
1. [代码]首先是借口定义 * @author xzfpublic interface MyDeque { * insert the specified element at the front of this deque if it is possible * to do so...
分类:
其他好文 时间:
2014-07-02 17:07:48
阅读次数:
237
1 /** 2 * 内部类详解 3 * 4 * @author shao 5 * 6 */ 7 public class InnerClass { 8 9 public static void main(String[] args) { 10 ...
分类:
编程语言 时间:
2014-07-02 10:23:26
阅读次数:
194
1.背景 项目需要,用python实现了将字典内容存入本地的mysql数据库。比如说有个字典dic={"a":"b","c":"d"},存入数据库效果图如下:2.代码 '''
Insert items into database
@author: hakuri
'''
import MySQLdb
def InsertData(TableName,dic):
try:
...
分类:
数据库 时间:
2014-07-02 08:37:12
阅读次数:
653