1.copy命令: delete命令: mkdir创建目录: move移动文件或目录
分类:
其他好文 时间:
2014-06-18 16:29:20
阅读次数:
208
学习delete可以参考下面两个博客,写的都很好,本文大部分参考与以下两个博客http://www.cnblogs.com/windows7/archive/2010/03/28/1698387.htmlhttp://my.oschina.net/warmcafe/blog/75845一、javas...
分类:
编程语言 时间:
2014-06-18 11:05:09
阅读次数:
320
查看指定帐号的授权信息 1 select OBJECT_NAME (id), USER_NAME (uid), 2 case action 3 when 193 then 'select' 4 when 195 then 'insert' 5 when 196 then 'delete' 6 whe...
分类:
其他好文 时间:
2014-06-18 09:50:52
阅读次数:
184
原题如下,意思就是说无序数组(由0,1,2组成),一遍扫描,把数组整理成0,1,2这样的序列。
Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red,...
分类:
其他好文 时间:
2014-06-18 07:12:43
阅读次数:
174
MySQL中的内置系统函数 用在SELECCT语句, 能及子句 where order by having 中 UPDATE DELETE, 函数中可以将字段名作为变量来用,变量的值就是这个列对应的每一行记录一、字符串函数 php中用的函数,MySQl中大部也提供 1. CONCAT(S1,S...
分类:
数据库 时间:
2014-06-17 23:53:34
阅读次数:
419
HBase基本的CRUD操作就不多介绍了,无非就是Put,Get,Delete三个类的运用。
现在看一下扫描技术,这种技术类似于关系型数据库的游标(cursor),并利用到了HBase底层顺序存储的特性。
使用扫描的一般步骤是:
1、创建Scan实例
2、为Scan实例增加扫描的限制条件
3、调用HTable的getScanner()方法获取ResultScanner对象
4、迭代Resul...
分类:
编程语言 时间:
2014-06-17 23:15:54
阅读次数:
388
Structural Things
An
active class is a class whose objects own one or
more processes or threads and therefore can initiate control activity. An active class is just like a class except that it...
分类:
其他好文 时间:
2014-06-17 22:44:27
阅读次数:
310
HttpClient的撑持在HTTP/1.1标准中界说的一切的HTTP办法:GET, HEAD, POST, PUT, DELETE, TRACE 和 OPTIONS。每有一个办法都有一个对应的类:HttpGet,HttpHead,HttpPost,HttpPut,HttpDelete,HttpTr...
分类:
其他好文 时间:
2014-06-17 20:03:45
阅读次数:
264
??
Both sequence diagrams and communication diagrams are kinds of interaction diagrams. An
interaction diagram
shows an interaction, consisting of a set of objects or roles, including the messages ...
分类:
其他好文 时间:
2014-06-17 19:15:04
阅读次数:
186
HttpClient的撑持在HTTP/1.1标准中界说的一切的HTTP办法:GET,HEAD,POST,PUT,DELETE,TRACE和OPTIONS。每有一个办法都有一个对应的类:HttpGet,HttpHead,HttpPost,HttpPut,HttpDelete,HttpTrace和HttpOptions。一切的这些类均完成了HttpUriRequest接口,故可以作为execute..
分类:
其他好文 时间:
2014-06-17 17:03:44
阅读次数:
169