首页 软件开发 代码片段 ( Page 82 )

代码片段 8064

#HTML
在网页中制作动画

<!DOCTYPE html> <html> <head> <title></title> <style type…

2015-12-13 190

#APS/Basic
实现电费缴纳

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/x…

2015-12-13 1,016

#Ruby
Ruby 连接并登录到 FTP 服务器

require 'net/ftp' require 'uri' uri = URI.parse('ftp://ftp.ruby-lang.org/') Net::FTP.open(…

2015-12-13 478

#Objective-C
iOS数据类型转换 NSData转NSString,Byte,UIImage

1,NSData 与 NSString   NSData --> NSString   NSString *aString = [[NSString alloc] initW…

2015-12-13 526

#Objective-C
生成plist

<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIS…

2015-12-13 957

#Shell
Linux Shell脚本检测tomcat并自动重启

#!/bin/bash while [ true ] do url="http://www.oschina.net/"; httpOK=`curl --connect-timeou…

2015-12-13 126

#Objective-C
CGContextAddArcToPoint 绘图 画一个圆角矩形

- (void)viewDidLoad { [super viewDidLoad]; UIImageView *imageView1 = [[UIImageView alloc]i…

2015-12-13 854

#Shell
Java Web 项目打包脚本

[typhoon@TFW-CENT6-LT jweb.tfw.tfw_web_lpm]$ ll export.v0.2.5_2013-03-10_20-40.jre150 总用量 …

2015-12-13 209

#SQL
用于校验 SQL Server 数据库备份的脚本

USE MASTER -- Add a new backup device -- Ensure that the SQL Server can read from the phys…

sql
2015-12-13 485

#SQL
SQL xp_cmdshell

GO ---打开xp_cmdshell EXEC sp_configure 'show advanced options', 1; RECONFIGURE; EXEC sp_con…

sql
2015-12-12 958
1 80 81 82 83 84 672