Package org.apache.axis.tool.core

Examples of org.apache.axis.tool.core.FileCopier


            tempFileFolder = new File("Service-copy");
            tempFileFolder.mkdir();
            File metaInfFolder = new File(tempFileFolder,"META-INF");
            metaInfFolder.mkdir();

            new FileCopier().copyFiles(classFileFolder,tempFileFolder);
            new FileCopier().copyFiles(serviceFile,metaInfFolder);

            //jar the temp directory. the output folder will be created if missing
            new JarFileWriter().writeJarFile(outputFolder,outputFileName,tempFileFolder);
        } catch (Exception e) {
            throw new ProcessException(e);
View Full Code Here

TOP

Related Classes of org.apache.axis.tool.core.FileCopier

Copyright © 2018 www.massapicom. 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.