免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 4525 | 回复: 3
打印 上一主题 下一主题

我安装了Red Hat Enterprise Linux5为什么没有compress命令? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-03-14 09:51 |只看该作者 |倒序浏览
我安装了Red Hat Enterprise Linux5为什么没有compress命令?

论坛徽章:
0
2 [报告]
发表于 2008-03-14 14:32 |只看该作者
原帖由 kitzhao 于 2008-3-14 09:51 发表
我安装了Red Hat Enterprise Linux5为什么没有compress命令?


過時的工具囉,目前沒機會要建立 .Z 格式的壓縮包。

若你的問題是要解開的話,gzip -d file.Z 方式即可處理。

--

论坛徽章:
0
3 [报告]
发表于 2014-03-27 11:36 |只看该作者
没有安装compress的rpm包,找到后再单独安装吧。

论坛徽章:
0
4 [报告]
发表于 2014-03-27 11:52 |只看该作者
http://download.chinaunix.net/download/0014000/13174.shtml

Commons Compress 用以实现将文件压缩或解压成 tar、zip、bzip2 等格式。
下面代码将文件压缩成zip格式:
Archive archiver = ArchiverFactory.getInstance("zip");               
archiver.add(   new File("C:\Temp\1.html"));               
archiver.add(   new File("C:\Temp\1.html.bz2"));               
archiver.save(  new File("C:\Temp\ZIPTEST.zip"));
Zip文件的解压缩:
Archive archiver = ArchiverFactory.getInstance(                                
new File("C:\Temp\ZIPTEST.zip"));               
archiver.unpack( new File("C:\Temp\unpacked\"));
The Apache Commons Compress library defines an API for working with ar, cpio, Unix dump, tar, zip, gzip, Pack200 and bzip2 files.
The code in this component has many origins:
The bzip2, tar and zip support came from Avalon s Excalibur, but originally from Ant, as far as life in Apache goes. The tar package is originally Tim Endres  public domain package. The bzip2 package is based on the work done by Keiron Liddle. It has migrated via:
Ant -> Avalon-Excalibur -> Commons-IO -> Commons-Compress.
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP