Generates an array of cryptographically secure random bytes.生成一组密码安全的随机数一个数:uint8_t a = 0;int returnValue = SecRandomCopyBytes(kSecRandomDefault, 1, &...
分类:
移动开发 时间:
2015-01-20 11:45:38
阅读次数:
147
move table:
SQL> startup
ORACLE instance started.
Total System Global Area 281018368 bytes
Fixed Size 2083336 bytes
Variable Size 88081912 bytes
Database Buffers...
分类:
数据库 时间:
2015-01-20 08:59:38
阅读次数:
438
错误截图: 解决方法: 用root进入mysql终端,执行以下命令: alter database hive character set latin1;
分类:
数据库 时间:
2015-01-19 14:14:06
阅读次数:
689
Error[e16]: Segment ISTACK (size: 0xc0 align: 0) is too long for segment definition. At least 0xe more bytes needed. The problem occurred while proces...
分类:
其他好文 时间:
2015-01-18 11:40:50
阅读次数:
241
先简单介绍
wc(Word Count)命令的功能为统计指定文件中的字节数、字数、行数,并将统计结果显示输出
格式:wc file
命令参数:
-c 统计Bytes数(字节数),并显示文件名
-l 统计行数:使用换行符‘\n’作为行结束标志,实际是统计换行符个数
-m 统计字符数。这个标志不能与 -c标志一起使用。
-w 统计字数。一个字被定义为由空白、跳格或换行字符分隔的字符串。
...
分类:
Windows程序 时间:
2015-01-14 12:46:11
阅读次数:
1983
为啥要使用shell命令操纵本地网络?因为这样就可以绕过上层connectService来干一些事情,至于具体要干点什么事情,容我先卖个关子在以后的blog里说明。
首先进入adb shell,然后去Ping一个服务器的ip地址
ping 211.69.198.222
PING 211.69.198.222 (211.69.198.222) 56(84) bytes of data...
分类:
移动开发 时间:
2015-01-13 14:24:50
阅读次数:
152
1:数据流转byte数组
public static byte[] getByteByInputStream(InputStream fileInputStream) {
ByteArrayOutputStream baos = new ByteArrayOutputStream();
int read = 0;
byte[] bytes = new byte[1024];...
分类:
编程语言 时间:
2015-01-13 12:32:00
阅读次数:
183