首页 > 2015年01月08日 > 全部分享
ADO.NET中的Connection详解
连接字符串1.写法一"Data Source=服务器名; Initial Catalog=数据库; User ID =用户名; Password=密码; Charset=UTF8; "2.写法二"Server=服务器名; Database=数据库; uid=用户名; Password=密码;Char...
分类:Web开发   时间:2015-01-08 00:44:34    收藏:0  评论:0  赞:0  阅读:348
iOS7 修改导航系统默认返回按钮文字及颜色
//iOS7 修改系统默认返回按钮文字及颜色 UIBarButtonItem *item = [[UIBarButtonItem alloc] initWithTitle:@"返" style:UIBarButtonItemStylePlain target:nil action:ni...
分类:移动平台   时间:2015-01-08 00:44:24    收藏:0  评论:0  赞:0  阅读:394
bash中的文件测试
如果下面的条件成立返回真...-e文件存在-a文件存在这个和-e的作用一样. 它是不赞成使用的,所以它的用处不大。-f文件是一个普通文件(不是一个目录或是一个设备文件)-s文件大小不为零-d文件是一个目录-b文件是一个块设备(软盘, 光驱, 等等.) -c文件是一个字符设备(键盘, 调制解调器, 声...
分类:其他   时间:2015-01-08 00:44:14    收藏:0  评论:0  赞:0  阅读:380
Android中强指针和弱指针
因为Android中很多地方代码是用C++编写,为了能够保证C++中指针能够被正确的释放,于是Android引入了其实在C++中已经有的智能指针技术;智能指针技术的实质就是:记录引用某一个对象的次数,一旦检测到次数为0,这时就自定将此对象所占内存释放。简单的的智能指针技术因为不能解决对象循环引用的问...
分类:移动平台   时间:2015-01-08 00:44:04    收藏:0  评论:0  赞:0  阅读:861
[LeetCode] Sum Root to Leaf Numbers dfs,深度搜索
Given a binary tree containing digits from0-9only, each root-to-leaf path could represent a number.An example is the root-to-leaf path1->2->3which rep...
分类:其他   时间:2015-01-08 00:43:44    收藏:0  评论:0  赞:0  阅读:321
Selenium webdriver 操作日历控件
一般的日期控件都是input标签下弹出来的,如果使用webdriver 去设置日期,1. 定位到该input2. 使用sendKeys 方法比如:但是,有的日期控件是readonly的比如12306的这个这个时候,没法调用WebElement的sendKeys()方案一:使用JS remove re...
分类:Web开发   时间:2015-01-08 00:43:24    收藏:0  评论:0  赞:0  阅读:680
【leetcode】Spiral Matrix
Spiral MatrixGiven a matrix ofmxnelements (mrows,ncolumns), return all elements of the matrix in spiral order.For example,Given the following matrix:[...
分类:其他   时间:2015-01-08 00:43:14    收藏:0  评论:0  赞:0  阅读:366
免安装mysql配置
觉得免安装的mysql很好用,一句指令就可以安装和移除了,所以记录一下。
分类:数据库技术   时间:2015-01-08 00:43:04    收藏:0  评论:0  赞:0  阅读:447
SIMCom智能设备扫描头接口说明[转]
Document Title: SIMCom智能设备扫描头接口说明Version: 1.01Date: 2014-02-13Status: ReleaseDocument Control ID: SIM0005Writer: Yunqi.miao通过程序代码开启扫描通过广播实现,广播名称为:andr...
分类:其他   时间:2015-01-08 00:42:54    收藏:0  评论:0  赞:0  阅读:450
XP系统下IIS常见的几个问题
XP系统安装IIS所遇到的一些问题及解决方法,个人使用中所遇到的问题,HTTP 错误 500.100 - 内部服务器错误 - ASP 错误,127.0.0.1 HTTP 错误 401.2 - 未授权:服务器配置导致登录失败,IUSR_ IWAM_ ,401.2
分类:其他   时间:2015-01-08 00:42:34    收藏:0  评论:0  赞:0  阅读:583
Majority Element
Given an array of size n, find the majority element. The majority element is the element that appears more than ? n/2 ? times.You may assume that the ...
分类:其他   时间:2015-01-08 00:42:26    收藏:0  评论:0  赞:0  阅读:329
2011条   上一页 1 ... 99 100 101
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!