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

代码片段 8064

#HTML
右下角聊天窗口界面

很久前做的半成品, 没做完, 本地文件也没了, 有需要的自己右键另存吧

2015-12-07 210

#Python
抓取tuigirl图片

import urllib.request import re import os import sys from collections import deque if __na…

2015-12-07 902

#Ruby
统计字母出现的次数

#Counts the number of times a 'letter' appears in a 'phrase' def CountLetterOccurrence(let…

2015-12-07 474

#HTML
css3 box-shadow 盒子效果

<style type="text/css"> img { width: 100px; height: 100px; vertical-align: bottom; }…

2015-12-07 212

#Shell
ORACLE批处理

@ECHO OFF for /f "skip=3 tokens=4" %%i in ('sc query OracleServiceORCL') do set "zt=%%i" &…

2015-12-07 263

#Objective-C
NSDate的十分有用的分类

// // NSDate+Common.h // FreeDaily // // Created by YongbinZhang on 3/5/13. // Copyright (…

2015-12-07 736

#Java
Android将图片保存至SD卡上

首先判断SD卡是否插入–> public String getSDPath(){ File SDdir=null; boolean sdCardExist= En…

2015-12-07 591

#Python
python 电话本管理例子

#!/usr/bin/env python #coding=utf-8 #电话本管理,可以进行添加,删除,修改,查询用户信息 import cPickle as p class T…

#Java
Android橡皮擦效果

public class ActionView extends View { private Paint mPaint = new Paint(); private Path mP…

2015-12-06 519

#Java
Android画板实现

public class ActionerView extends View { private Paint mPaint = new Paint(); private Path …

2015-12-06 887

#Java
ImageSwitcher实现引导页效果

布局代码: <?xml version="1.0" encoding="UTF-8"?> <FrameLayout xml…

2015-12-06 430
1 85 86 87 88 89 672