码迷,mamicode.com
首页 >  
搜索关键字:parse    ( 5240个结果
电话拨号器app学习
本以为是一个简单的电话拨号器,还是学到了不少东西,所以还是学到了不少东西,懂得了android权限 Uri.parse的几种用法:不多说上代码:package com.djf.phone;import android.app.Activity;import android.content.Inten...
分类:移动开发   时间:2014-10-17 15:04:14    阅读次数:216
20141016--for 兔子
1 Console.Write("请输入月数:"); 2 int m =int.Parse(Console.ReadLine()); 3 int ct = 0;//成兔对数ct 4 int xt = 0...
分类:其他好文   时间:2014-10-17 09:22:24    阅读次数:173
20141016--for 菱形
1 Console.Write("请输入一个数:"); 2 int n = int.Parse(Console.ReadLine()); 3 for (int i = 1; i <= n; i++) 4 ...
分类:其他好文   时间:2014-10-17 09:19:04    阅读次数:126
Asp.Net中的获取Web.config中设置的参数!(前后台的代码示例)
一、Web.config中设置代码 二、在App_Code中建立sys.cs// 注意:需要添加相应的引用命名空间usingpublic class sys{ public static int deleted = int.Parse(ConfigurationManager.App...
分类:Web程序   时间:2014-10-16 16:53:42    阅读次数:139
Android 启动浏览器的方法
启动android默认浏览器    Intent intent = new Intent();   intent.setAction("android.intent.action.VIEW");   Uri url = Uri.parse("http://www.baidu.com");   intent.setData(url);   startAc...
分类:移动开发   时间:2014-10-16 11:43:52    阅读次数:172
urllib包
前言:urllib.parse模块按功能分为两大类:URL parsing(url解析) 和URL quoting(url引用)。一.URL parsing:主要是1.把URL字符串分割成组件2.把组件合并成url字符串1.1. urllib.parse.urlparse(urlstring, sc...
分类:Web程序   时间:2014-10-16 01:06:21    阅读次数:613
记一次在java中的日期parse错误
String dateString = "2014101517";new SimpleDateFormat("yyyyMMddHH").parse(dateString)这句代码会产生错误吗?答案是:不会。这里是直接赋值给dateString一个值,这么解析是不会有问题的。但是当这个字符串是来自文件...
分类:编程语言   时间:2014-10-15 20:29:41    阅读次数:219
Android 更新升级下载 自定义Updates 兼容版
Android 更新模块 自定义Update 写这个总结是因为遇到个Android系统兼容的BUG Android项目原本使用的是API提供的下载方法 如下: DownloadManager downloadManager = (DownloadManager) getSystemService(Activity.DOWNLOAD_SERVICE); DownloadManager.Request request = new Request(Uri.parse(dl)); ...
分类:移动开发   时间:2014-10-15 14:27:30    阅读次数:276
Json解析 在VS中
添加引用,安装Json.NETusing Newtonsoft.Json.Linq; //解析JSON,目的前台的上架结果 //main 是前台传过来的,是Json JObject obj = JObject.Parse(main); ...
分类:Web程序   时间:2014-10-15 12:53:00    阅读次数:256
android发短信的代码
android发短信的代码 by 伍雪颖 Uri uri = Uri.parse("smsto:10086"); Intent intent = new Intent(Intent.ACTION_SENDTO,uri); intent.putExtra("sms_body","The SMS text"); startActivity(intent);...
分类:移动开发   时间:2014-10-15 09:35:40    阅读次数:184
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!