今天写一个测试demo,遇到如下问题:Error
Domain=ASIHTTPRequestErrorDomain Code=5 "Unable to create request (bad url?)"
UserInfo=0x69ba0f0 {NSLocalizedDescription=Unab...
分类:
其他好文 时间:
2014-05-16 22:19:42
阅读次数:
310
Error log:Problem
Description-------------------1.Prepare DatabaseRun the RCU utilityCreate
Prefix: DEVSelect:IdentityManagement->Oracle Adaptive Acce...
分类:
其他好文 时间:
2014-05-16 21:18:44
阅读次数:
426
这个 paste 就要比 join 简单多了!相对于 join 必须要比对两个文件的数据相关性,
paste 就直接『将两行贴在一起,且中间以 [tab] 键隔开』而已!简单的使用方法:[root@www ~]# paste [-d] file1
file2选项与参数:-d :后面可以接分隔字...
分类:
系统相关 时间:
2014-05-16 19:05:10
阅读次数:
495
join 看字面上的意义 (加入/参加)
就可以知道,他是在处理两个文件之间的数据,而且,主要是在处理『两个文件当中,有"相同数据"的那一行,才将他加在一起』的意思。我们利用底下的简单例子来说明:[root@www
~]# join [-ti12] file1 file2选项与参数:-t :j...
分类:
系统相关 时间:
2014-05-16 18:42:37
阅读次数:
478
一.测试数组长度是使用arr.length;(注:使用delete不会修改数组的length属性)二.数组方法 1.join
Array.join()方法将数组所有元素都转化为字符串连接在一起,返回生成的字符串。 var arr=[1,2,3];
//创建一个包含三个元素的数组ar...
分类:
编程语言 时间:
2014-05-16 09:08:28
阅读次数:
350
这个 paste 就要比 join 简单多了!相对于 join 必须要比对两个文件的数据相关性,
paste 就直接『将两行贴在一起,且中间以 [tab] 键隔开』而已!简单的使用方法:[root@www ~]# paste [-d] file1
file2选项与参数:-d :后面可以接分隔字...
分类:
系统相关 时间:
2014-05-14 07:10:40
阅读次数:
302
转自:http://blog.csdn.net/xujainxing/article/details/8981904Storage在里面当然可以创建文件夹,只不过无法通过代码创建,而是在后台管理页面中的storage来创建的。下面这个例子演示了如何读取Storage中的文件:注:我的domain叫做...
分类:
其他好文 时间:
2014-05-13 10:03:12
阅读次数:
232
#!/usr/bin/envpython#coding:utf8#此脚本为查找递归目录下所有文件匹配的内容importos,sys,tabdefpaths(path):list_path=os.walk(path)all_file=[]forp,d,flinlist_path:forfinfl:pfile=os.path.join(p,f)ifos.path.isdir(pfile):paths(pfile)all_file.append(pfile)returnall..
分类:
编程语言 时间:
2014-05-13 03:49:34
阅读次数:
426
#!/usr/bin/envpython#coding:utf8importos,sys,glob,time,MySQLdb,reDIRNAME=os.path.dirname(__file__)OPSTOOLS_DIR=os.path.abspath(os.path.join(DIRNAME,‘..‘))sys.path.append(OPSTOOLS_DIR)fromlibrary.mysqlconfigimportMySQLDConfig,getMyVariablesfromoptparseimport..
分类:
数据库 时间:
2014-05-13 02:46:59
阅读次数:
809
#!/usr/bin/envpython#coding:utf8#随机生成自定义长度密码fromrandomimportchoiceimportstring,pickledefGenPassword(length=8,chars=string.ascii_letters+string.digits):return‘‘.join([choice(chars)foriinrange(length)])defpasslist(r_user,c_user,ip_list,web_list):di..
分类:
编程语言 时间:
2014-05-13 01:25:56
阅读次数:
505