1 package src 2 3 import ( 4 "bytes" 5 "compress/gzip" 6 ) 7 8 func GzipEncode(in []byte) ([]byte, error) { 9 var (10 buffer by...
分类:
其他好文 时间:
2014-09-21 18:36:50
阅读次数:
544
(不定期更新中...)1、普通用户和root的切换su root2、设定新的root用户密码sudo passwd root然后输入新的root用户密码3、常见的压缩命令格式介绍*.z compress程序压缩的文件*.gz gzip程序压缩的文件(应用最广)*.bz2 bzip2程序压缩的文件*....
分类:
系统相关 时间:
2014-09-18 16:13:14
阅读次数:
236
Now I will introduce a way to compress a text. When we are confronted with numerous data, and the data has a similar structure, we can take advantag.....
分类:
其他好文 时间:
2014-09-13 20:07:25
阅读次数:
182
迁移环境源:Solaris 10 + Oracle 11.2.0.3目标:Solaris 10 + Oracle 11.2.0.1导出命令:expdp user/pwd directory=jy content=metadata_only tables=xxx,xxx,xxx exclude=sta...
分类:
其他好文 时间:
2014-09-04 23:28:40
阅读次数:
361
//压缩图片大小publicstaticBitmapcompressImage(Bitmapimage){ByteArrayOutputStreambaos=newByteArrayOutputStream();image.compress(Bitmap.CompressFormat.JPEG,10...
分类:
移动开发 时间:
2014-08-21 19:18:04
阅读次数:
448
前面讲到,linux中的后缀名没有特殊的意义,一般是作为不同文件类型的标识而已。下面是与打包、压缩相关的后缀名介绍: *.z:compress程序压缩文件 *.gz:gzip程序压缩文件 *.bz2:bzip2压缩文件 *.tar:tar打包,未压缩 *.tar.g...
分类:
系统相关 时间:
2014-08-20 22:32:22
阅读次数:
284
1.你所需要的软件pppdppp拨号服务器pptpd 在pppd拨号的基础上增加pptpd的支持2.确定你的内核是否支持mppemodprobe ppp-compress-18 && echo ok如果显示ok,那么恭喜,你的内核已经具备了mppe支持。请到第4部分3.升级内核支持mppewget ...
分类:
其他好文 时间:
2014-08-19 23:46:05
阅读次数:
432
Android中Bitmap, Drawable, Byte,ID之间的转化1. Bitmap 转化为 byte ByteArrayOutputStream out = new ByteArrayOutputStream(); bitmap.compress(Bitmap.CompressForma...
分类:
移动开发 时间:
2014-08-12 18:20:44
阅读次数:
209