码迷,mamicode.com
首页 >  
搜索关键字:compress    ( 805个结果
Golang gzip的压缩和解压
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
linux笔记---常用指令
(不定期更新中...)1、普通用户和root的切换su root2、设定新的root用户密码sudo passwd root然后输入新的root用户密码3、常见的压缩命令格式介绍*.z compress程序压缩的文件*.gz gzip程序压缩的文件(应用最广)*.bz2 bzip2程序压缩的文件*....
分类:系统相关   时间:2014-09-18 16:13:14    阅读次数:236
static dictionary methods of text compression
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
linux下的文件压缩与打包---compress,gzip,zcat,bzip2,bzcat,tar,find,tarfile,tarball
linux下的文件压缩与打包...
分类:系统相关   时间:2014-09-05 16:16:41    阅读次数:284
impdp导入报错ORA-14460: only one COMPRESS or NOCOMPRESS clause may be specified
迁移环境源: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
android图片处理方法(转)
//压缩图片大小publicstaticBitmapcompressImage(Bitmapimage){ByteArrayOutputStreambaos=newByteArrayOutputStream();image.compress(Bitmap.CompressFormat.JPEG,10...
分类:移动开发   时间:2014-08-21 19:18:04    阅读次数:448
攻城狮在路上(叁)Linux(二十七)--- 压缩与打包之常见的压缩命令
前面讲到,linux中的后缀名没有特殊的意义,一般是作为不同文件类型的标识而已。下面是与打包、压缩相关的后缀名介绍: *.z:compress程序压缩文件 *.gz:gzip程序压缩文件 *.bz2:bzip2压缩文件 *.tar:tar打包,未压缩 *.tar.g...
分类:系统相关   时间:2014-08-20 22:32:22    阅读次数:284
CENTOS6 安装配置 pptpd 心得
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之间的转化
Android中Bitmap, Drawable, Byte,ID之间的转化1. Bitmap 转化为 byte ByteArrayOutputStream out = new ByteArrayOutputStream(); bitmap.compress(Bitmap.CompressForma...
分类:移动开发   时间:2014-08-12 18:20:44    阅读次数:209
805条   上一页 1 ... 76 77 78 79 80 81 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!