首页 软件开发 ( Page 1687 )

软件开发 20299

#Python
打印对象的属性

#coding=utf-8 class AttrDisplay: def getAttrs(self): res = [] for key in self.__dict__: re…

#APS/Basic
VBScript替换文本

Dim T, F, K, A T = Mid(T, 1) & Chr(0) & "Create By 网链替换" T = Mid(T, 1, 0) & Ch…

2014-10-24 942

#HTML
sencha touch 中获取picker的text值

{ xtype:'picker', id:'picker', slots: [ { name: 'limit_speed', title: 'Speed', data: [ {te…

2014-10-24 334

#Ruby
Ruby 编写一个 SOAP 服务器端

require 'soap/rpc/standaloneServer' class MyServer < SOAP::RPC::StandaloneServer def in…

2014-10-23 701

#Ruby
ruby读取http文件保存到本地

require 'open-uri' File.open('/home/user/1.jpg', 'wb') {|f| f.write(open('http://tp1.sinai…

2014-10-23 331

#SQL
SQL Server 2005 数据库中的日期数据排序

SELECT email_address AS EmailAddress, CONVERT(nvarchar, lastcontact, 101) AS Last_Contact …

sql
2014-10-23 940

#Python
批量提取word格式的调查表信息

#coding:utf-8 import os import win32com from win32com.client import Dispatch, constants fr…

2014-10-23 627

#APS/Basic
VBScript解压缩单个zip格式文件

Dim objShell Set objShell = CreateObject("Shell.Application") objShell.NameSpace("D:\tmp")…

2014-10-23 847

#SQL
oracle去除重复数据sql

delete table1 where rowid not in ( select max(rowid) from table1 group by col1 ,col2 )

sql
2014-10-23 867

#SQL
T-SQL 解决"易语言难题"

declare @i int declare @j int declare @str varchar(20) set @i = 123 while @i < 999/3 be…

sql
2014-10-23 888

#SQL
oracle 常用语句

--查询表的大小 select t.owner, t.segment_name, (sum(t.blocks) * 8) / 1024 || 'M' as S, t.segment…

sql
2014-10-23 421

#Python
python版实现文本左右对齐排版

# python版实现文本左右对齐排版 # 题目来源: http://www.bathome.net/thread-1246-1-1.html # 依山居 7:17 2015/11…

2014-10-22 498