byte[]数组如何转换成String public static final String arrayToString(byte[] bytes) { StringBuffer buff = new StringBuffer(); for (int i = ...
分类:
编程语言 时间:
2015-04-13 12:37:47
阅读次数:
125
我是个离不开google服务的人。花钱买的SSH服务也时不时抽风。于是……
$sudo apt-get install miredo
$ifconfig
在结果中应该能看见一个叫 teredo 的虚拟网卡。
$ ping6 ipv6.google.com
PING ipv6.google.com(2404:6800:8003::93) 56 data bytes
64 ...
分类:
系统相关 时间:
2015-04-12 22:46:31
阅读次数:
167
# Redis 配置文件# 当配置中需要配置内存大小时,可以使用 1k, 5GB, 4M 等类似的格式,其转换方式如下(不区分大小写)## 1k =>1000 bytes# 1kb => 1024 bytes# 1m => 1000000 bytes# 1mb =>1024*1024 bytes# ...
分类:
其他好文 时间:
2015-04-10 19:56:56
阅读次数:
169
malloc的全称是memory allocation,中文叫动态内存分配,当无法知道内存具体位置的时候,想要绑定真正的内存空间,就需要用到动态的分配内存。原型为extern void *malloc(unsigned int num_bytes)。在使用上,malloc 和 new 至少有两个不同...
分类:
其他好文 时间:
2015-04-10 17:40:57
阅读次数:
121
--查询临时表空间select f.tablespace_name,d.file_name "tempfile name",round((f.bytes_free + f.bytes_used) / 1024 /1024, 2) "total mb",round(((f.bytes_free + f...
分类:
其他好文 时间:
2015-04-10 13:04:56
阅读次数:
103
openssl_random_pseudo_bytes函数本身是用来生成指定个数的随机字节,因此在使用它来生成随机字符串时,还需要配合使用函数base64_encode。如下所示:public static function getRandomString($length = 42)
{
/*
* Use OpenSSL (if available)...
分类:
Web程序 时间:
2015-04-09 23:47:36
阅读次数:
157
一, bootsect.s程序功能简要分析 下面这段代码就是bootsect的源程序, 这是Linus Torvalds在1991年写的!! SYS_SIZE is the number of clicks (16 bytes) to be loaded.! 0x3000 is 0x30000 b....
分类:
其他好文 时间:
2015-04-09 19:36:08
阅读次数:
186
1、配置文件#vim /usr/local/nginx/conf/nginx.conflog_format access ‘$remote_addr – $remote_user [$time_local] “$request” ‘‘$status $body_bytes_sent “$http_r...
分类:
其他好文 时间:
2015-04-07 19:32:34
阅读次数:
111
nginx日志设置如下log_formataccess‘$remote_addr-$remote_user[$time_local]"$request"‘‘$status$body_bytes_sent"$http_referer"‘‘"$http_user_agent""$request_body""$http_x_forwarded_for"-"$http_soapaction""$request_time"‘;$remote_addr记录的是阿里云SLB内网转发地址..
分类:
其他好文 时间:
2015-04-04 19:53:52
阅读次数:
178
小文件指的是那些size比HDFS的block size(默认64M)小的多的文件。任何一个文件,目录和block,在HDFS中都会被表示为一个object存储在namenode的内存中,每一个object占用150 bytes的内存空间。所以,如果有10million个文件,每一个文件对应一个.....
分类:
其他好文 时间:
2015-04-04 11:53:57
阅读次数:
281