以下指令包括文件删除、复制、zip文件解压操作。使用7z指令指令进行解压操作前,需要确保 windows 的 path 系统环境变量中存在7z的安装路径。
7z的下载地址:https://www.7-zip.org/download.html
::替换文件需要添加 /y 参数才能直接替换.不然会出现提示是否替换. ::复制Axis2Implementation和WebServices编译后的文件到tomcat的webappsaxis2WEB-INFservices和modules目录下 @echo off echo "先删除tomcat对应目录下的三个旧文件:Rdu-v1_0.aar、Log4JInit.aar、durLicense.mar" del /f /s /q C:xxxRDUServicewebappsaxis2WEB-INFservicesRdu-v1_0-C.aar del /f /s /q C:xxxRDUServicewebappsaxis2WEB-INFservicesLog4JInit-C.aar del /f /s /q C:xxxRDUServicewebappsaxis2WEB-INFmodulesdurLicense-C.mar echo. echo "复制 WebServices的Rdu-v1_0-C.aar到tomcat的webappsaxis2WEB-INFservices 目录下" copy /y \tsclientCDevelopment2015.09.16.2.0WebServicesSourceImplementationRDU-WSdeployRdu-v1_0-C.aar C:xxxRDUServicewebappsaxis2WEB-INFservices echo "复制 Axis2Implementation的Log4JInit-C.aar到tomcat的webappsaxis2WEB-INFservices 目录下" copy /y \tsclientCDevelopment2015.09.16.2.0Axis2ImplementationSourceImplementationServiceLibdeployLog4JInit-C.aar C:xxxRDUServicewebappsaxis2WEB-INFservices echo "复制 Axis2Implementation的durLicense-C.mar到tomcat的webappsaxis2WEB-INFmodules 目录下" copy /y \tsclientCDevelopment2015.09.16.2.0Axis2ImplementationSourceImplementationServiceLibdeploydurLicense-C.mar C:xxxRDUServicewebappsaxis2WEB-INFmodules echo. ::使用7z来进行解压文件,执行该bat前需要确保path环境变量中存在7z安装路径 echo "解压 Axis2Implementation的axis2-WEB-INF-overlay2.zip 文件到tomcat的webappsaxis2WEB-INF 目录下" 7za x -y -aoa \tsclientCDevelopment2015.09.16.2.0Axis2ImplementationSourceImplementationServiceLibdeployaxis2-WEB-INF-overlay2.zip -o"C:xxxRDUServicewebappsaxis2WEB-INF" echo "解压 WebServices的axis2-WEB-INF-overlay1.zip 文件到tomcat的webappsaxis2WEB-INF 目录下" 7za x -y -aoa \tsclientCDevelopment2015.09.16.2.0WebServicesSourceImplementationRDU-WSdeployaxis2-WEB-INF-overlay1.zip -o"C:xxxRDUServicewebappsaxis2WEB-INF"
原文地址: