Package com.alibaba.otter.node.etl.common.pipe.impl.http.archive

Examples of com.alibaba.otter.node.etl.common.pipe.impl.http.archive.ArchiveBean.unpack()


        // continue;
        // }

        System.out.println("start unpack : " + archiveFile.getName());
        File targetFile = new File("/tmp/otter", FilenameUtils.removeExtension(archiveFile.getName()));
        archiveBean.unpack(archiveFile, targetFile);
        // }
    }

}
View Full Code Here


                    return null;
                }
            });

            // 开始解压
            List<File> result = archiveBean.unpack(archiveFile, unpack);
            want.bool(result.size() == fileDatas.size());

            // File dir = new File(unpack, archiveFile.getParent());
            // File[] unpackFiles = dir.listFiles();
            //
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.