码迷,mamicode.com
首页 > 2014年05月13日 > 全部分享
Android中SdCard的数据读写
importjava.io.FileNotFoundException; importjava.io.FileOutputStream; importjava.io.IOException; importandroid.R.integer; importandroid.content.Context; importandroid.os.Environment; publicclassFileService{ privateContextcontext; publicFileService(Contextcon..
分类:移动开发   时间:2014-05-13 02:59:18    阅读次数:329
Unit Conversion
Q1:SectorCount->>CapacitySectorCount*SectorSize=totalbytes2097152*512=1073741824/1024/1024/1024=1GBQ2:Capacity->>SectorCountConverttototalbytes/sectorsize=SectorCount1GB*1024*1024*1024(bytes)=1073741824/512=2097152
分类:其他好文   时间:2014-05-13 04:32:42    阅读次数:308
Microsoft Windows Server 2008部署Magic Winmail
今天朋友公司做内网,需求是mail跟文件共享,之前在MicrosoftWindowsServer2003部署MagicWinmail4.7的时候基本很简单,装完简单配置就能正常使用。想到2003显得太陈旧了于是给朋友公司做了个MicrosoftWindowsServer2008X86Enterprise版本的服务器,安装完MagicWinmail之后发现..
分类:Windows程序   时间:2014-05-13 02:00:53    阅读次数:456
NIO入门系列之第3章:从理论到实践:NIO 中的读和写
3.1概述读和写是I/O的基本过程。从一个通道中读取很简单:只需创建一个缓冲区,然后让通道将数据读到这个缓冲区中。写入也相当简单:创建一个缓冲区,用数据填充它,然后让通道用这些数据来执行写入操作。在本节中,我们将学习有关在Java程序中读取和写入数据的一些知识。我们..
分类:其他好文   时间:2014-05-13 01:30:04    阅读次数:352
基于jsp的AJAX多文件上传的实现
最近的项目开发中,遇到了一个多文件上传的问题,即在不刷新页面的情况下,上传多个文件至服务器。现总结分享如下:本文主要采用了基于jsp的ajax,jquery,servlet等技术。1.upload.jsp点击上传时,调用对应的fileupload函数,通过ajax将文件异步传送到servlet中处理。注意在文..
分类:Web程序   时间:2014-05-13 03:22:52    阅读次数:429
python不同的内容邮件群发
#!/usr/bin/envpython#coding:utf8importsmtplib,sysfromemail.mime.textimportMIMETextfromconfig.mailssimportmail_list,contentdefsend_mail():mail_host,mail_user,mail_pass,mail_postfix,sub,me,mailto_list=mail_listme=mail_user+"<"+mail_user+"@"+mail_postfix+"&..
分类:编程语言   时间:2014-05-13 02:40:50    阅读次数:503
python自定义查找文件内容
#!/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
Unix How To: The Linux /etc/inittab file
OneofthefilesthattheaverageUnixsysadminrarelylooksat,almostneverchangesandyetdependsoneverytimeheorsherebootsasystemisthe/etc/inittabfile.Thismodestlittlefilecontrolswhathappenswheneverasystemisrebootedorforcedtochangerunlevels.Let‘stakealookattheconfigurat..
分类:系统相关   时间:2014-05-13 04:47:00    阅读次数:612
mysql慢查询日志切割,日志分析
#!/usr/bin/envpython#coding:utf8importos,sysimportdatetime,shutil,subprocessfromconfig.configimportslow_configclasscut_mysql(object):mysql_user,mysql_pass,date_day,slow_log_name,slow_log_path,mysqlsla_log_name,mysqldumpslow_log_name,new_log_path,new_log_nam..
分类:数据库   时间:2014-05-13 02:39:47    阅读次数:482
python版wc
#!/usr/bin/envpython#coding:utf8fromoptparseimportOptionParserimportsys,os#parser=OptionParser()defset():parser=OptionParser("Usage:%prog[file1][file2]...")parser.add_option("-c","--chars",dest="characters",action="store_true",default=False,help="onlycountc..
分类:编程语言   时间:2014-05-13 04:31:41    阅读次数:488
Example LINUX init Script
Fromtimetotime,peoplewantmetocreateLINUXinitscriptsforthem.Iusuallyjusttakeanexistingoneforanotherserviceandchangeituptoworkformynewapplication,butmostofthemhavebecomesolongthesedaysthatIenduphavingtohackoutatonofcodejusttoreducethemdowntotheverybasicscript..
分类:系统相关   时间:2014-05-13 03:59:53    阅读次数:306
python批量同步web服务器代码核心程序
#!/usr/bin/envpython#coding:utf8importos,sysimportmd5,tabfrommysql_co.my_dbimportset_mysqlfromssh_co.ssh_connectimportsshdfromssh_co.cfg.configimportssh_message,item_pathfromfileimportfindfiledefmy_mysql():db_file={}my_connect=set_mysql()f_file=findfile.mai..
分类:编程语言   时间:2014-05-13 01:44:22    阅读次数:449
Basic chkconfig Command Examples in Linux
ThisisourongoingLinuxcommandserieswherewearegoingtoreviewhowwecanusechkconfigcommandefficientlywithit’savailableparameters.TheChkconfigcommandtoolallowstoconfigureservicesstartandstopautomaticallyinthe/etc/rd.d/init.dscriptsthroughcommandline.Let’sseesome..
分类:系统相关   时间:2014-05-13 04:26:32    阅读次数:469
python批量修改服务器密码,同时保存execl表格
#!/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
母亲节礼物
母亲节礼物太强大了,老妈很高兴。她说:贺卡上的话写的真好,平时亲人都很难说出口。在这里感谢软件学院,感谢物联网研究院。平时工作很忙,确实很少陪老人,今天下午还去单位加了半天班。把最近的工作进展跟老爸聊了聊,他听了很高兴。最近虽然很累,但是这一切都值了。
分类:其他好文   时间:2014-05-13 01:46:28    阅读次数:249
graphite,python监控网卡流量
#!/usr/bin/envpythonimportsys,timefromsocketimportsocketdefread_interface(in_file):withfile(in_file)asf:returnf.readlines()[2:]defset_interface(inter_msg):dic={}foriinxrange(len(inter_msg)):dic[inter_msg[i].split(":")[0].strip()]={"in":inter_msg[i].split(":..
分类:编程语言   时间:2014-05-13 04:01:55    阅读次数:432
原创python多线程批量管理工具batch(不断完善)
#!/usr/bin/envpythonimportthreadingimporttimeimportparamikoimportos,sysfromipimportip_list,web_server,ip_msgfromoptparseimportOptionParserfromssh_co.cfg.configimporthost_msgdefopts():parser=OptionParser(usage="usage%progoptions")parser.add_option("-i","--it..
分类:编程语言   时间:2014-05-13 03:32:03    阅读次数:537
1224条   上一页 1 ... 41 42 43 44 45 46 47 ... 72 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!