首页 软件开发 ( Page 1640 )

软件开发 20769

#Python
Python邮件服务

#!/usr/bin/env python # -*- coding: utf-8 -*- __author__ = 'Zoa Chou' # see http://www.mud…

#HTML
8个通用的web字体集

/* The Times New Roman-based serif stack: */ font-family: Cambria, "Hoefler Text", Utopia,…

2014-12-30 986

#Python
python实现堆排序算法代码

#!/usr/bin/python import sys def left_child(node): return node * 2 + 1 def right_child(nod…

2014-12-30 951

#PHP
在PHP中怎么解决大量数据处理的问题

问题(来自lunacyfoundme)        我正在重建我们公司内部网,期间遇到一个与大量数据处理报告…

#PHP
PHP页面跳转的三种方式

PHP页面跳转一:header()函数 header()函数的定义如下: void header (string string [,bool replace [,int http_…

php
2014-12-30 479

#SQL
数据库 全局搜索

--EXEC SearchAllTables 'A38010088' --GO Here is the complete stored procedure code: CREATE…

sql
2014-12-29 241

#PHP
php 导出excel类

/** * excel导出类 * * 使用方法 $excel=new Excel(); * //设置编码: *$excel->setEncode("utf-8&qu…

php
2014-12-29 384

#Python
python分析列表文件的内容是否支持JSON

#!/usr/bin/python # -*- coding:utf8 -*- #该脚本是检查客户端同事给的TXT文件是否支持JSON格式 #只有通过后,才能交给运维同事处理抓取视…

2014-12-29 418

#PHP
php基础部分常见的函数和关键字

bool setcookie ( string $name [, string $value [, int $expire = 0 [, string $path [, strin…

php
2014-12-29 219

#Python
多线程抓网站图片

if __name__ == '__main__': for page in range(sPage,ePage+1): # 下载的page范围 print '>'*40+(…

2014-12-29 1,012

#Python
MySQLdb 使用方法

MySQLdb是Python 连接 MySQL 的模块,下面是它一些简单的使用方法: # -*- coding: utf-8 -*- #mysqldb import time, M…

2014-12-29 302

#Java
spring mvc 日期处理

@InitBinder protected void initBinder(HttpServletRequest request, ServletRequestDataBinder…

2014-12-29 308