apktool.bat 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. @echo off
  2. setlocal
  3. set BASENAME=apktool_
  4. chcp 65001 2>nul >nul
  5. set java_exe=java.exe
  6. if defined JAVA_HOME (
  7. set "java_exe=%JAVA_HOME%\bin\java.exe"
  8. )
  9. rem Find the highest version .jar available in the same directory as the script
  10. setlocal EnableDelayedExpansion
  11. pushd "%~dp0"
  12. if exist apktool.jar (
  13. set BASENAME=apktool
  14. goto skipversioned
  15. )
  16. set max=0
  17. for /f "tokens=1* delims=-_.0" %%A in ('dir /b /a-d %BASENAME%*.jar') do if %%~B gtr !max! set max=%%~nB
  18. :skipversioned
  19. popd
  20. setlocal DisableDelayedExpansion
  21. rem Find out if the commandline is a parameterless .jar or directory, for fast unpack/repack
  22. if "%~1"=="" goto load
  23. if not "%~2"=="" goto load
  24. set ATTR=%~a1
  25. if "%ATTR:~0,1%"=="d" (
  26. rem Directory, rebuild
  27. set fastCommand=b
  28. )
  29. if "%ATTR:~0,1%"=="-" if "%~x1"==".apk" (
  30. rem APK file, unpack
  31. set fastCommand=d
  32. )
  33. :load
  34. "%java_exe%" -jar -Xmx1024M -Duser.language=en -Dfile.encoding=UTF8 -Djdk.util.zip.disableZip64ExtraFieldValidation=true -Djdk.nio.zipfs.allowDotZipEntry=true "%~dp0%BASENAME%%max%.jar" %fastCommand% %*
  35. rem Pause when ran non interactively
  36. for %%i in (%cmdcmdline%) do if /i "%%~i"=="/c" pause & exit /b