日期字符串格式化成日期String str="201403060819";
SimpleDateFormat fo = new SimpleDateFormat("yyyyMMddHHmm");//yyyyMMddHHmm是要转化成日期的字符串的格式
Date date = new Date();
try {
date = fo.parse(s...
分类:
其他好文 时间:
2015-03-18 12:23:47
阅读次数:
125
$url="http://p_w_picpath.zujuan.com/ChangeToImg_parse.aspx?q=2889684&b=11&w=700";$curl=curl_init($url);$filename=date("Ymdhis").".jpg";curl_setopt($curl,CURLOPT_RETURNTRANSFER,1);$p_w_picpathData=curl_exec($curl);curl_close($curl);$tp=@fopen($filena..
分类:
Web程序 时间:
2015-03-17 14:21:54
阅读次数:
114
[代码] 调用拨号程序 // 给移动客服10086拨打电话 Uri uri = Uri.parse("tel:10086"); Intent intent = new Intent(Intent.ACTION_DIAL, uri); startActivity(intent);[代码] 发送短信或彩...
分类:
移动开发 时间:
2015-03-15 23:32:34
阅读次数:
212
1.浏览器Uri uri =Uri.parse("http://www.google.com");Intent it= new Intent(Intent.ACTION_VIEW,uri);startActivity(it);2.地图Uri uri = Uri.parse("geo:38.89953...
分类:
其他好文 时间:
2015-03-15 21:07:35
阅读次数:
143
//try-catch 尝试(try)-抓获(catch) try//尝试,保护起来,使程序出错也能执行 { //确定不会出错时不要用try,当不确定时使用try-catch可以捕获错误, int i = int.Parse...
分类:
其他好文 时间:
2015-03-13 22:15:04
阅读次数:
119
Console.Write("请输入月数:"); int m =int.Parse(Console.ReadLine()); int ct = 0;//成兔对数ct int xt = 0;//小兔...
分类:
其他好文 时间:
2015-03-13 22:05:09
阅读次数:
205
1. switch casebreak(跳出)距离break 最近的大括号,跳出这个大括号,执行大括号之后的命令switch case 必须与 break 一同使用。1 3 5 7 8 10 12月是31天今年的2月是28天其他的4 6 9 11是30天。int m =int.Parse(Conso...
分类:
其他好文 时间:
2015-03-13 20:29:33
阅读次数:
133
哇哦!cJson很小巧很厉害哦!/* Parser core - when encountering text, process appropriately. */static const char *parse_value(cJSON *item,const char *value){ if...
分类:
Web程序 时间:
2015-03-12 20:43:15
阅读次数:
180
import timeimport leveldbfrom urllib.parse import quote_plus import reimport jsonimport itertoolsimport sysimport requestsfrom queue import Queuefrom ...
分类:
编程语言 时间:
2015-03-12 15:02:01
阅读次数:
1056
Android下调用收发短信邮件等1,调web浏览器Uri myBlogUri = Uri.parse("http://xxxxx.com");returnIt = new Intent(Intent.ACTION_VIEW, myBlogUri);2,地图Uri mapUri = Uri.pars...
分类:
移动开发 时间:
2015-03-11 21:29:27
阅读次数:
141