UncompressReceiver.java
上传用户:hensond
上传日期:2021-12-27
资源大小:817k
文件大小:1k
源码类别:

软件工程

开发平台:

Java

  1. package com.company.command;
  2. /**
  3.  * @author cbf4Life cbf4life@126.com
  4.  * I'm glad to share my knowledge with you all.
  5.  */
  6. public class UncompressReceiver implements IReceiver {
  7. //执行gzip解压缩命令
  8. public boolean gzipExec(String source, String to) {
  9. System.out.println(source + " --> " +to + " GZIP解压缩成功!");
  10. return true;
  11. }
  12. //执行zip解压缩命令
  13. public boolean zipExec(String source, String to) {
  14. System.out.println(source + " --> " +to + " ZIP解压缩成功!");
  15. return true;
  16. }
  17. }