- 博客(110)
- 问答 (1)
- 收藏
- 关注
原创 IMPDP & EXPDP
expdp介绍数据泵工具导出的步骤:1、创建DIRECTORYcreate directory dir_dp as 'D:\oracle\dir_dp'; 2、授权Grant read,write on directory dir_dp to lttfm;--查看目录及权限SELECT privilege, directory_name, DIRECTORY_PAT...
2014-05-19 21:42:27
208
原创 sqlite3 命令
sqlite3 dbname请在db所在目录执行该命令,否则会自动创建一个新的资料库。 一、数据库基础数据表(SQLITE_MASTER)select * from SQLITE_MASTER; 通过select查询该表,该表保存数据库中保存的表结构等基础内容; 二、sqlite3特殊命令所有sqlite3特殊命令都是以“.”开始的,当用户输入...
2012-11-21 17:15:34
192
原创 pickle 模块
持久性就是指保持对象,甚至在多次执行同一程序之间也保持对象。通过本文,您会对 Python对象的各种持久性机制(从关系数据库到 Python 的 pickle以及其它机制)有一个总体认识。另外,还会让您更深一步地了解Python 的对象序列化能力。 什么是持久性? 持久性的基本思想很简单。假定有一个 Python 程序,它可能是一个管理日常待办事项的程序,您...
2012-11-15 16:44:35
159
原创 python copy and deepcopy
>>> a=[[1,2],(3,5),123,[1,2,3,4]]>>> b=copy.copy(a)>>> b [[1, 2], (3, 5), 123, [1, 2, 3, 4]]>>> b[2]=456>>> b [[1, 2], (3, 5), 456, [1, 2, 3, 4]]>>> a [[1, 2], (3, 5), 123, [..
2012-11-15 14:51:25
128
原创 python 常用模块
python除了关键字(keywords)和内置的类型和函数(builtins),更多的功能是通过libraries(即modules)来提供的。常用的libraries(modules)如下: 1)python运行时服务* copy: copy模块提供了对复合(compound)对象(list,tuple,dict,custom class)进行浅拷贝和深拷贝的功...
2012-11-15 10:19:59
261
原创 SHELL 读不到文件的最后一行?
读文件时,读不到最后一行,在最后一行后面加了一行空的,就可以读到。while read linedo echo $linefidone < $filename办法:使用vim编辑了一下被读的文件,就可以了,不过不知道是什么原因...
2012-11-06 18:06:16
882
原创 字符串变成变量名
使用字符串指代变量名。 比如说,有两个变量 a="bbb"和bbb={"c":1},引用a如何得到{"c":1},也就是a的值'bbb'所代表的变量bbb的值。 一 exec('abc = 5') globals()['abc'] = 6 setattr(__builtins__, 'abc', 9) __import__('sys')._getframe(0).f...
2012-11-02 11:47:09
2235
1
原创 关于UnsupportedOperationException异常
我们在使用collection框架code时,会时常遇到UnsupportedOperationException异常,有些人很不了解为什么抛出这个异常,会很郁闷,但是那些只知道code的代码工人不会想这些问题。下面我作一下解释,可能也不是很正确。其实我们主要的疑惑可能是:java既然提供了这个方法,为什么我们调用要抛出异常,说不支持这个操作。我们先看一段代码: List...
2012-10-31 09:43:00
176
原创 PYTHON--常用函数(一)
[size=large]字符串常用函数[/size]replace(string,old,new[,maxsplit]) 字符串的替换函数,把字符串中的old替换成new。默认是把string中所有的old值替换成new值,如果给出maxsplit值,还可控制替换的个数,如果maxsplit为1,则只替换第一个old值。 >>>a="11223344" >>>print...
2012-08-31 09:47:47
112
原创 PYTHON--常用函数(二)
[size=large]类型转换函数[/size]chr(i)chr()函数返回ASCII码对应的字符串。>>> print chr(65) A>>> print chr(66) B>>> print chr(65)+chr(66) ABord(x)ord()函数返回一个字符串参数的ASCII码或Unicode值。>>> ord("a") 97>>> o.
2012-08-30 16:33:46
166
原创 PYTHON--常用函数(三)
eval( expression[, globals[, locals]]) 该参数是一个字符串和可选的 globals和 locals。globals必须是一个字典。locals可以是任何映射对象.>>> x = 1 >>> print eval('x+1') 2>>> g = {'x':'a','y':'b','z':'c'}>>> eval('x+y+z',g)...
2012-08-30 16:33:20
114
原创 No.9 Find the product abc
Q:A Pythagorean triplet is a set of three natural numbers, a < b < c, for which,a2 + b2 = c2For example, 32 + 42 = 9 + 16 = 25 = 52.There exists exactly one Pythagorean triplet for which a +...
2012-08-27 10:19:39
191
原创 No.8 The greatest product of five consecutive digits in the 1000-digit numb
Q:Find the greatest product of five consecutive digits in the 1000-digit number.73167176531330624919225119674426574742355349194934969835203127745063262395783180169848018694788518438586156078...
2012-08-23 17:27:34
127
原创 No.7 The 10001st prime number
Q:By listing the first six prime numbers: 2, 3, 5, 7, 11, and 13, we can see that the 6th prime is 13.What is the 10 001st prime number?A:import mathimport timet1 = time.time()de...
2012-08-23 16:16:15
160
原创 No.6 The difference between the sum of the squares and the square of the sum
Q:The sum of the squares of the first ten natural numbers is,1^2 + 2^2 + ... + 10^2 = 385The square of the sum of the first ten natural numbers is,(1 + 2 + ... + 10)^2 = 552 = 3025Hence ...
2012-08-22 09:52:33
344
原创 DeprecationWarning: the sets module is deprecated from sets import Immut
解决方法:1) file "__init__", replace: from sets import ImmutableSet class DBAPISet(ImmutableSet): with class DBAPISet(frozenset) 2) file "converters.py", remove: from sets imp...
2012-08-21 15:53:54
189
原创 MySQLdb for Python 安装 windows
1、由于自己使用的是MySQL 5.5社区服务器版本,由于Windows的有些头被移动到了Connector中,于是乎下载Connector,特意跑去岛国的镜像服务器上下载:mysql-connector-c-noinstall-6.0.2-win32.zip;2、下载后解压到本地某处,修改MySQL-python解压目录下的setup_windows.py文件,直捣黄龙,将mysql_r...
2012-08-21 15:31:30
154
原创 No.5 The smallest positive number
Q:2520 is the smallest number that can be divided by each of the numbers from 1 to 10 without any remainder.What is the smallest positive number that is evenly divisible by all of the numbers fr...
2012-08-21 09:40:51
212
原创 No.4 The largest palindrome made from the product of two 3-digit numbers
Q:A palindromic number reads the same both ways. The largest palindrome made from the product of two 2-digit numbers is 9009 = 91 × 99.Find the largest palindrome made from the product of two 3-di...
2012-08-20 17:06:52
215
原创 No.3 The largest prime factor of number
Q: The prime factors of 13195 are 5, 7, 13 and 29. What is the largest prime factor of the number 600851475143 ?################################# shell ## echo 60085...
2012-08-20 13:55:55
234
原创 No.2 Sum of the even-valued terms in the Fibonacci
Each new term in the Fibonacci sequence is generated by adding the previous two terms. By starting with 1 and 2, the first 10 terms will be:1, 2, 3, 5, 8, 13, 21, 34, 55, 89, ...By considering...
2012-08-20 13:53:41
156
原创 No.1 The sum of all the multiples of 3 or 5 below 1000
If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23.Find the sum of all the multiples of 3 or 5 below 1000.A:#! /...
2012-08-20 13:53:11
162
原创 shell 查找文件中包含中文的行
awk '/[^!-~]/' fileasscii码从!到~中包含所有的大小写字母,和英文符号cat file | grep "[^\u4e00-\u9fa5]"
2012-08-15 14:32:19
1997
原创 CXF wsdl2Java
一. 简介Apache CXF 是一个Service框架,他简化了Service的创建, CXF实现了JAX-WS2.0规范,并通过了JAX-WS2.0 TCK; CXF和Spring无缝集成;CXF支持多种传输协议(HTTP, JMS, Corba等), 支持多种Binding数据格式(SOAP,XML,JSON等), 支持多种DataBinding数据类型(JAXB, Aegis) 。C...
2012-07-15 18:37:23
97
原创 在两台服务器之间建立信任关系
在两台服务器之间建立信任关系解决scp,ssh等不用输入密码等问题 在两台服务器之间建立信任关系解决scp,ssh等不用输入密码等问题最近在编写定时python脚本时遇到一个问题。在该脚本中,需要使用scp命令将本地的文件复制到另一台机器中备份。但通常执行scp命令后都需要输入用户密码,这样在定时自动执行的python脚步中就不适用了。后来在Internet中查找相关资料,有资料[1]介绍...
2012-07-06 13:11:31
474
原创 sqlite3:自增主键、联合主键
1、sqlite支持建立自增主键,sql语句如下: CREATE TABLE w_user( id integer primary key autoincrement, userename varchar(32), usercname varchar(32), userpassword varchar(32), userpermission varchar(32), ...
2012-07-06 11:08:05
1277
原创 sqlite 3 基本操作命令
详细链接http://blog.youkuaiyun.com/linchunhua/article/details/7184439$sqlite3 myDB #运行并且使用myDB这个数据库SQLite version 3.7.2Enter ".help" for instructionsEnter SQL statements terminated with a ";"sqlite>...
2012-07-05 16:52:13
141
原创 Linux Shell for循环写法总结
关于shell中的for循环用法很多,一直想总结一下,今天网上看到上一篇关于for循环用法的总结,感觉很全面,所以就转过来研究研究,嘿嘿...1、 for((i=1;i...
2012-07-05 15:48:36
217
原创 myeclipse中fatjar安装
myeclipse打jar第三方的jar文件。1、到http://sourceforge.net/projects/fjep/ 下载的文件是net.sf.fjep.fatjar_0.0.31.zip,解压缩后你会看到plugins文件夹中的net.sf.fjep.fatjar_0.0.31.jar文件。2、将上面的net.sf.fjep.fatjar_0.0.31.jar拷...
2012-04-18 10:30:36
155
原创 保留字符串中的数字,其它全去掉
把2007.10.30 16:00:00去掉"." ":" 和" "空格,生成200710301600001)echo "2007.10.30 16:00:00" | awk -F'[.: ]' '{for(i=1;i
2012-03-15 11:26:22
1763
原创 设置指定ip和自动获取ip
1. 设置指定固定ip的bat文件@echo off@echo 开始设置netsh interface ip set address name="本地连接" source=static addr=192.168.1.2 mask=255.255.255.0 gateway=192.168.1.1 gwmetric=autonetsh interface ip set dns n...
2012-02-01 14:53:06
617
原创 客户端用https webservice
来自[url]http://www.cnblogs.com/genghechuang/archive/2011/10/26/2225042.html[/url]项目需要用https与服务器进行连接,获取系统需要的一些配置参数。以前是用http进行连接的,客户端代码比较简单,直接使用URL类进行连接并获取输入流即可。试着在浏览器中输入相应的https连接地址,提示证书确认,确认以后就访问到内...
2011-12-12 16:54:42
198
原创 Linux 命令 set
用set命令可以设置各种shell选项或者列 出shell变量.单个选项设置常用的特性.在某些选项之后-o参数将特殊特性打开.在某些选项之后使用+o参数将关闭某些特性,不带任何参数的set命 令将显示shell的全部变量.除非遇到非法的选项,否则set总是返回ture.当shell被调用时,可以列出全部的选项.当前的选项集列在$-中.在option参数被处理后,其他的参数被赋值到位置参数中($...
2011-12-02 09:48:30
134
原创 sed 用法解释
[size=x-large]1.Sed命令[/size]调用sed命令有两种形式: sed [options] 'command' file(s) sed [options] -f scriptfile file(s)a\ 在当前行后面加入一行文本。b lable 分支到脚本中带有标记的地方,如果分支不存在则分支到脚本的末尾。...
2011-10-28 14:29:36
94
原创 python lambda
Python支持一种有趣的语法,它允许你快速定义单行的最小函数。这些叫做lambda函数,是从Lisp借鉴来的,可以用在任何需要函数的地方。lambda函数也叫匿名函数,即,函数没有具体的名称。 总的来说,lambda函数可以接收任意多个参数并且返回单个表达式的值。lambda函数不能包含命令,包含的表达式不能超过一个。不要试图向 lambda函数中塞入太多的东西;如果你需要...
2011-10-19 16:13:57
87
原创 df 和 du 命令详解
df命令详细用法 a:显示全部的档案系统和各分割区的磁盘使用情形 i:显示i -nodes的使用量 k:大小用k来表示 (默认值) t:显示某一个档案系统的所有分割区磁盘使用量 x:显示不是某一个档案系统的所有分割区磁盘使用量 T:显示每个分割区所属的档案系统名称 常用命令:df -hi 操作详解 引用 指令 df 可以显示目前所有档案系统的最大...
2011-09-27 14:59:30
228
原创 linux awk命令
awk是三个人名的缩写,他们是:Aho、(Peter)Weinberg和(Brain)Kernighan。awk---样式扫描与处理工具。[size=large][color=red]awk的调用方式[/color][/size] awk提供了适应多种需要的不同解决方案,它们是: 一、awk命令行,你可以象使用普通UNIX命令一样使用awk,在命令行中你也可以使用awk...
2011-09-16 10:59:07
98
原创 shell tr命令的使用
tr是translate的简写,亦即翻译,但是遗憾的是,它不能翻译句子,只能翻译单个字符。1 tr的工作原理是什么?先记住一点,tr命令不接受指定的文件参数,而只是对标准输入进行翻译。好了,记住这点后,我们继续。tr的命令格式是tr SET1 SET2,凡是在SET1中的字符,都会被替换为SET2中相应位置上的字符,简单吧!2 举个例子吧!tr的例子其实都大...
2011-09-15 10:30:32
422
原创 Useful Shell Option – extglob 和 shopt命令
Bash Shell有个extglob选项,开启之后Shell可以另外识别出5个模式匹配操作符,能使文件匹配更加方便。开启方法很简单,使用shopt命令:shopt -s extglob 关闭,使用shopt命令:shopt -u extglob开启之后,以下5个模式匹配操作符将被识别:?(pattern-list) - 所给模式匹配0次或1次; *(pattern-l...
2011-09-14 10:45:09
234
空空如也
shell里面怎么调用、执行python文件?
2011-06-13
TA创建的收藏夹 TA关注的收藏夹
TA关注的人