在微博认证方式里,基本的OAuth认证是必须要调整到跳转到第三方页面上进行授权的,例如下面的例子:
1、从http://open.weibo.com/wiki/index.php/SDK#Android下载SDK包。
2、在AndroidExample/src/weibo4android/Wei.....
分类:
移动开发 时间:
2014-05-08 12:12:04
阅读次数:
503
Android横竖屏切换小结(老样子,图片啥的详细文档,可以下载后观看http://files.cnblogs.com/franksunny/635350788930000000.pdf)Android手机或平板都会存在横竖屏切换的功能,通常是由物理重力感应触发的,但是有时候也不尽然,通常在设置里面...
分类:
移动开发 时间:
2014-05-08 11:18:41
阅读次数:
515
【Entitlements】 Entitlements confer specific
capabilities or security permissions to your iOS or OS X app. You can set many
entitlements using the Su.....
分类:
其他好文 时间:
2014-05-08 10:21:55
阅读次数:
290
http://acm.hdu.edu.cn/showproblem.php?pid=1213
1 #include 2 #include 3 #include 4 #define maxn 2000 5 using namespace std; 6 7
int f[maxn],n,m; 8 ...
分类:
其他好文 时间:
2014-05-08 10:10:44
阅读次数:
308
1:String[] urls =
{"http://www.paikeworld.com/files/photos/2012-08/13448167861308.jpg","http://www.paikeworld.com/files/photos/2012-08/13448167848275....
分类:
编程语言 时间:
2014-05-08 10:08:55
阅读次数:
487
1.Abort()停止当前请求2.getAllResponseHeaders()作为字符串返回完整的headers3.getResponseheader(“hederLabel”)作为字符串返回单个的header标签4.Open(“method”,“URL”[,asyncFlag[,”userNam...
分类:
其他好文 时间:
2014-05-08 08:51:07
阅读次数:
263
这小例子只要是说明用python怎么批量修改指定目录的文件名:
记得要把脚本跟修改的文件放在同一个目录下
#encoding:utf-8
import os
import sys
files = os.listdir('D:\\1') #路径可以自己
for name in files:
a = os.path.splitext(name)
if a[1] == '.txt': ...
分类:
编程语言 时间:
2014-05-08 08:16:14
阅读次数:
537
目标ftp服务器是一个非标准端口的ftp1.通过shell登录#ftp
//shell下输入ftp命令,进入到ftp提示符>open IP PORT //IP ,PORT对应为服务器的IP和端口号或者直接使用一条语句#ftp
IP PORT2.多文件下载(对目录无效)如:下载目录下的所有文件(子目录...
分类:
系统相关 时间:
2014-05-08 08:02:49
阅读次数:
474
利用jQuery的ajax函数就可以实现异步上传图片了。一开始我是想在处理程序中,直接用context.Request.Files来获取页面中的input
file,但是不知道为什么一次获取不了。网上说的,Form中要设置enctype="multipart/form-data"和 method="...
分类:
Web程序 时间:
2014-05-08 07:46:26
阅读次数:
401
$magic_quotes_gpc=get_magic_quotes_gpc();@extract(daddslashes($_COOKIE));@extract(daddslashes($_POST));@extract(daddslashes($_GET));if(!$magic_quotes_gpc){$_FILES=daddslashes($_FILES);}functiondaddslashes($string,$force=0){if(!$GLOBALS[‘magic_quotes_gpc‘]||..
分类:
数据库 时间:
2014-05-08 03:15:34
阅读次数:
492