- 浏览: 588061 次
- 来自: 北京
最新评论
-
lidi2011:
很通俗易懂的文章,很形象。
同步synchronized方法和代码块 -
inuyasha027:
领教了,谢谢。
Hadoop安装, Hive 安装。 -
xbmujfly:
好文 ,本人发现晚了
学习笔记 - java.util.concurrent 多线程框架 -
hanazawakana:
学习学习!
ANT-build.xml文件详解 -
david.org:
似乎还忽略一点,那就是cassandra不同数据中心的同步,H ...
Cassandra Vs HBase
文章列表
在SQL结构化查询语言中,LIKE语句有着至关重要的作用。 LIKE语句的语法格式是:select * from 表名 where 字段名 like 对应值(子串),它主要是针对字符型字段的,它的作用是在一个字符型字段列中检索包含对应子串的。 假设有一个数据库中有个表table1,在table1中有两个字段,分别是name和sex二者全是字符型数据。现在我们要在姓名字段中查询以“张”字开头的记录,语句如下: select * from table1 where name like "张*" 如果要查询以“张”结尾的记录,则语句如下: select * f ...
- 2008-07-04 21:06
- 浏览 2626
- 评论(0)
#-*-coding:utf8 -*-#!/usr/bin/env pythonfrom ftplib import FTPimport timeimport osimport loggingimport logging.handlersclass Log(): def __init__(self): pass ''' 记录日志到文件 ''' def logger(self,logfile): logger = logging.getLogger() #handler = logging.FileHandler(logfile) #记录 ...
- 2008-07-03 17:37
- 浏览 1741
- 评论(0)
public class ReadConfig {
private static String readValueByKey(String filePath,String key){ Properties props = new Properties(); InputStream in = ReadConfig.class.getResourceAsStream(filePath); try { props.load(in); } catch (IOException e1) { System.out.println("+++++++++ ...
- 2008-07-02 15:01
- 浏览 915
- 评论(0)
#import other modules
import cPAMIE
import cModalPopUp
ie = cPAMIE.PAMIE()
ie.navigate('http://10.232.27.6:9080/fbrole/main/login.jsp')
#print ie.cookieGet()
ie.textBoxSet('EOSOperator/userID','fengyong')
ie.textBoxSet('hciPasswordTypeEOSOperator/password','000000')
ie.buttonClick('login')
ie.navig ...
- 2008-06-28 17:18
- 浏览 4321
- 评论(0)
1.静态代理
接口或抽象类:
package com.bian.jdom.asyn;
public interface HelloWord {
public void sayHello();
}
被代理的类:
package com.bian.jdom.asyn;
public class HelloWordImpl implements HelloWord {
public HelloWordImpl(){
}
public void sayHello() {
// TODO Auto-generated meth ...
- 2008-06-28 11:37
- 浏览 1213
- 评论(0)
http://lazygoo.iteye.com/blog/148702
一、进程与线程
每一个进程都独享一块内存空间。一个应用程序可以同时启动多个进程,比如IE浏览器,打开一个IE浏览器,就相当于开启了一个进程。
线程指进程中的一个执行流程,一个进程可以包含多个线程。
每个进程都需要操作系统为其分配独立的内存地址,而同一进程中的多个线程在同一块地址空间工作,他们共享一块内存和资源。
每次调用java
.exe的时候操作系统都会启动一个java
虚拟机进程,当启动java
虚拟机进程的时候,java
虚拟机都会创建一个主线程,改线程从 程序入口main方法开始执行,这个线程的名 ...
- 2008-06-23 18:23
- 浏览 1216
- 评论(0)
http://blog.csdn.net/Slancer/archive/2007/07/16/1694169.aspx
精彩PuTTY 中文教程(解决乱码、X窗口、自动登陆等问题) 收藏
新一篇: 提问的智慧
<script></script>
PuTTY 中文教程
作者:柴锋 2006年11月Web:http://www.chaifeng.comemail: putty-tutorial [0x40] chaifeng [0x2E] comLinks:http://docs.google.com/View?docid=ajbgz6fp3pjh_2dwwww ...
- 2008-06-05 20:44
- 浏览 5972
- 评论(0)
http://hi.baidu.com/newharvar/blog/item/bd36defd0a13d744d7887d6e.html
sqlite默认编码是utf-8,在我们的PYTHON文件中设置文件保存编码及输出默认编码都为utf-8
在python安装目录lib/site-packages,下新建 sitecustomize.py输入import syssys.setdefaultencoding('utf-8') #set default encoding to utf-8
python运行时自动设置编码为utf-8
往sqlite中插入数据然后直接print的时候,需要将数据编码 ...
- 2008-06-05 17:06
- 浏览 1538
- 评论(0)
http://hi.baidu.com/peaksst/blog/item/457de91056bfa803213f2e99.html
python(22): apply、map及函数工具、list的再构造(14.2-14.5)
2007-07-28 16:37
首先来复习python中函数的定义。在python中,有两种方式可以用来定义一个函数。用def可以定义有名字的函数。用lambda可以定义匿名函数。由于在实际调用一个函数时,实参的个数可能是一个也可能是两个,还可能是多个。因此在形参前面加上*或**来处理这个情况。比如:
def test(*x):
if len(x ...
- 2008-06-05 15:19
- 浏览 1319
- 评论(0)
http://www.cnblogs.com/fengmk2/archive/2008/04/21/1163766.html
Python tips: 什么是*args和**kwargs?
先来看个例子:
def foo(*args, **kwargs):
print 'args = ', args
print 'kwargs = ', kwargs
print '---------------------------------------'
if __name__ == '__main__':
foo(1,2,3,4)
foo(a=1,b=2,c ...
- 2008-06-05 14:37
- 浏览 7865
- 评论(0)
http://pyunit.sourceforge.net/pyunit_cn.html#AUTHOR
http://pyunit.sourceforge.net
http://www.ibm.com/developerworks/cn/linux/l-cptest.html
- 2008-06-04 15:42
- 浏览 1824
- 评论(0)
1.diveintopythonzh
2.简明Python教程.chm
3.PythonForS60_1_4_1_doc.pdf
- 2008-06-03 20:52
- 浏览 1154
- 评论(0)
##################################
#-*- coding:utf8 -*- #
# Author:biansutao@gmail.com #
# Purpose:Text edit programer #
# #
##################################
#import s60
import appuifw
import e32
#import sys
import os
import time
import sys
sys.setd ...
- 2008-06-03 16:56
- 浏览 2682
- 评论(0)
Xfire 用户手册 http://xfire.codehaus.org/User%27s+Guide
算法 http://blog.minidx.com/category/data-struct
twisted http://gashero.yeax.com/?p=22
http://www.linuxjournal.com/node/7871/print
http://twistedmatrix.com/projects/core/documentation/howto/index.html
http://wiki.woodpecker.org.c ...
- 2008-05-22 15:10
- 浏览 1073
- 评论(0)
关键字: webservices xfire XFire提供了四种身份验证的方式,分别是http验证,JSR181,Handler验证,WS-Security。 SOAP的原理告诉我们一个WS交互的流程是客户端发送请求->服务器接收请求->服务器发送数据->客户端接收数据,handler可 ...
- 2008-05-22 14:39
- 浏览 2760
- 评论(0)